From: Hartmut Holzgraefe Date: Sat, 22 Dec 2001 18:47:59 +0000 (+0000) Subject: *now* it is backwards compatible ... X-Git-Tag: PRE_ISSET_PATCH~445 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d69607ebd843ad671e58c81a99d2af666489cc9;p=php *now* it is backwards compatible ... --- diff --git a/ext/msession/msession.c b/ext/msession/msession.c index 4106996ad4..941b5e3aaf 100644 --- a/ext/msession/msession.c +++ b/ext/msession/msession.c @@ -104,7 +104,9 @@ function_entry msession_functions[] = { }; zend_module_entry msession_module_entry = { +#if ZEND_MODULE_API_NO >= 20010901 STANDARD_MODULE_HEADER, +#endif "msession", msession_functions, PHP_MINIT(msession), @@ -112,7 +114,9 @@ zend_module_entry msession_module_entry = { PHP_RINIT(msession), /* Replace with NULL if there's nothing to do at request start */ PHP_RSHUTDOWN(msession),/* Replace with NULL if there's nothing to do at request end */ PHP_MINFO(msession), - NO_VERSION_YET, +#if ZEND_MODULE_API_NO >= 20010901 + NO_VERSION_YET, +#endif STANDARD_MODULE_PROPERTIES };