From 3386794febb24fcbce2ed8cac98a59cdb99d6bfa Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Mon, 27 Apr 2009 14:21:57 +0000 Subject: [PATCH] Fixed bug #48088 (Wrong ARG_INFO for OO-API of DateTime) --- ext/date/php_date.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/date/php_date.c b/ext/date/php_date.c index caa4bed09e..fdc4e9a8fd 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -435,7 +435,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) -- 2.40.0