Date: 09/23/99
- Next message: don <email protected>: "[PHP-DEV] Bug #2366: No Bison"
- Previous message: Sascha Schumann: "Re: [PHP-DEV] gateway to news.php.net down?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
askalski Thu Sep 23 10:34:18 1999 EDT
Modified files:
/php3 ChangeLog
/php3/functions php3_mcal.c
Log:
fixed typo in mcal_list_alarms()
Index: php3/ChangeLog
diff -u php3/ChangeLog:1.771 php3/ChangeLog:1.772
--- php3/ChangeLog:1.771 Thu Sep 23 06:24:56 1999
+++ php3/ChangeLog Thu Sep 23 10:34:18 1999
@@ -3,7 +3,8 @@
???? ??, 1999, Version 3.0.13
Ora_Fetch_Into now resets the returned array in all cases (Thies)
-- Fixed SEGV in mcal make_event_object() (Andrew Skalski)
+- Fixed SEGV in mcal make_event_object() and
+ typo in mcal_list_alarms() (Andrew Skalski)
- Fixed memory leak in pdf_open_memory_image() (Uwe Steinmann)
- Added FTP support (Andrew Skalski)
- Added optional allowable_tags arguments to strip_tags(),
Index: php3/functions/php3_mcal.c
diff -u php3/functions/php3_mcal.c:1.29 php3/functions/php3_mcal.c:1.30
--- php3/functions/php3_mcal.c:1.29 Wed Sep 22 16:22:32 1999
+++ php3/functions/php3_mcal.c Thu Sep 23 10:34:18 1999
@@ -693,7 +693,7 @@
convert_to_long(min);
convert_to_long(sec);
dt_setdate(&mydate,year->value.lval,month->value.lval,day->value.lval);
- dt_setdate(&mydate,hour->value.lval,min->value.lval,sec->value.lval);
+ dt_settime(&mydate,hour->value.lval,min->value.lval,sec->value.lval);
}
else
{
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: don <email protected>: "[PHP-DEV] Bug #2366: No Bison"
- Previous message: Sascha Schumann: "Re: [PHP-DEV] gateway to news.php.net down?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

