diff options
| author | Jani Taskinen <jani@php.net> | 2009-05-13 18:48:20 +0000 |
|---|---|---|
| committer | Jani Taskinen <jani@php.net> | 2009-05-13 18:48:20 +0000 |
| commit | 1033af1cb369457cabb66afcbce51bf5d656b7a3 (patch) | |
| tree | 12efe9df8c5db664d103e819156cb10f463d540c /ext/date/php_date.c | |
| parent | f67e7f4947a987b7258489f45108fb02744af488 (diff) | |
| download | php-git-1033af1cb369457cabb66afcbce51bf5d656b7a3.tar.gz | |
MFH: Fixed module loading order and made request shutdown functions also to
be loaded in reverse like all other shutdowns are.
Diffstat (limited to 'ext/date/php_date.c')
| -rw-r--r-- | ext/date/php_date.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ext/date/php_date.c b/ext/date/php_date.c index 3906dbb2bb..614aac889f 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -563,17 +563,11 @@ static HashTable *date_object_get_properties_interval(zval *object TSRMLS_DC); zval *date_interval_read_property(zval *object, zval *member, int type TSRMLS_DC); void date_interval_write_property(zval *object, zval *member, zval *value TSRMLS_DC); -/* This is need to ensure that session extension request shutdown occurs 1st, because it uses the date extension */ -static const zend_module_dep date_deps[] = { - ZEND_MOD_OPTIONAL("session") - {NULL, NULL, NULL} -}; - /* {{{ Module struct */ zend_module_entry date_module_entry = { STANDARD_MODULE_HEADER_EX, NULL, - date_deps, + NULL, "date", /* extension name */ date_functions, /* function list */ PHP_MINIT(date), /* process startup */ |
