From: Derick Rethans Date: Tue, 31 Mar 2015 10:08:56 +0000 (+0100) Subject: Export date_get_immutable_ce() so that extensions can make use of it too. X-Git-Tag: php-5.5.24RC1~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c117a40a7e7241f911db662b5401ebe2bc3c386;p=php Export date_get_immutable_ce() so that extensions can make use of it too. --- diff --git a/NEWS b/NEWS index 77f5bae19f..862ef6a3fa 100644 --- a/NEWS +++ b/NEWS @@ -17,6 +17,10 @@ PHP NEWS . Fixed bug #69221 (Segmentation fault when using a generator in combination with an Iterator). (Nikita) +- Date: + . Export date_get_immutable_ce so that it can be used by extensions. (Derick + Rethans) + - Curl: . Implemented FR#69278 (HTTP2 support). (Masaki Kagaya) diff --git a/ext/date/php_date.h b/ext/date/php_date.h index 10498d0d01..af4ed7a56b 100644 --- a/ext/date/php_date.h +++ b/ext/date/php_date.h @@ -193,6 +193,7 @@ PHPAPI timelib_tzinfo *get_timezone_info(TSRMLS_D); /* Grabbing CE's so that other exts can use the date objects too */ PHPAPI zend_class_entry *php_date_get_date_ce(void); +PHPAPI zend_class_entry *php_date_get_immutable_ce(void); PHPAPI zend_class_entry *php_date_get_timezone_ce(void); /* Functions for creating DateTime objects, and initializing them from a string */