From: Kalle Sommer Nielsen Date: Mon, 27 Apr 2009 14:22:15 +0000 (+0000) Subject: MFH: Fixed bug #48088 (Wrong ARG_INFO for OO-API of DateTime) X-Git-Tag: php-5.3.0RC2~92 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c848df3fbe6fd6da5a39da077768520f4bf3f043;p=php MFH: Fixed bug #48088 (Wrong ARG_INFO for OO-API of DateTime) --- diff --git a/ext/date/php_date.c b/ext/date/php_date.c index 82db083317..09f43c1b67 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -428,7 +428,7 @@ const zend_function_entry date_funcs_date[] = { PHP_ME_MAPPING(getOffset, date_offset_get, arginfo_date_method_offset_get, 0) PHP_ME_MAPPING(setTime, date_time_set, arginfo_date_method_time_set, 0) PHP_ME_MAPPING(setDate, date_date_set, arginfo_date_method_date_set, 0) - PHP_ME_MAPPING(setISODate, date_isodate_set, arginfo_date_isodate_set, 0) + PHP_ME_MAPPING(setISODate, date_isodate_set, arginfo_date_method_isodate_set, 0) PHP_ME_MAPPING(setTimestamp, date_timestamp_set, arginfo_date_method_timestamp_set, 0) PHP_ME_MAPPING(getTimestamp, date_timestamp_get, arginfo_date_method_timestamp_get, 0) PHP_ME_MAPPING(diff, date_diff, arginfo_date_method_diff, 0)