Browse Source

fixed typo in mcal_list_alarms()

experimetnal/RETURN_REF_PATCH
Andrew Skalski 27 years ago
parent
commit
1e13eb646e
  1. 3
      ChangeLog
  2. 2
      ext/mcal/php3_mcal.c

3
ChangeLog

@ -5,7 +5,8 @@ PHP 4.0 CHANGE LOG ChangeLog
- Ora_Fetch_Into now resets the returned array in all cases (Thies)
- Fixed NULL-Column problem in Oracle-Driver (Thies)
- Added extra metadata functions to ODBC, SQLTables etc (nick@easysoft.com)
- 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 Ora_PLogon (Thies)
- Resourcified Oracle (Thies)
- Implemented object serialization/deserialization in WDDX (Andrey)

2
ext/mcal/php3_mcal.c

@ -707,7 +707,7 @@ void php3_mcal_list_alarms(INTERNAL_FUNCTION_PARAMETERS)
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
{

Loading…
Cancel
Save