From: foobar Date: Sun, 24 Jun 2001 22:18:51 +0000 (+0000) Subject: The extension name seems to be usually totally lower-cased. X-Git-Tag: PRE_TSRM_MERGE_PATCH~349 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c95a1d690e4be16d20ca2147c5bf0421d04fec0;p=php The extension name seems to be usually totally lower-cased. --- diff --git a/ext/calendar/calendar.c b/ext/calendar/calendar.c index 2ac1dc1997..12ae1aae67 100644 --- a/ext/calendar/calendar.c +++ b/ext/calendar/calendar.c @@ -48,7 +48,7 @@ function_entry calendar_functions[] = { zend_module_entry calendar_module_entry = { - "Calendar", + "calendar", calendar_functions, NULL, /*PHP_MINIT(calendar),*/ NULL, diff --git a/ext/session/mod_mm.c b/ext/session/mod_mm.c index b6f4b52465..f580d785ad 100644 --- a/ext/session/mod_mm.c +++ b/ext/session/mod_mm.c @@ -345,7 +345,7 @@ PS_GC_FUNC(mm) } zend_module_entry php_session_mm_module = { - "Session MM", + "session mm", NULL, PHP_MINIT(ps_mm), PHP_MSHUTDOWN(ps_mm), NULL, NULL, diff --git a/ext/yaz/php_yaz.c b/ext/yaz/php_yaz.c index 8ce2e1fa5c..7d4a704be8 100644 --- a/ext/yaz/php_yaz.c +++ b/ext/yaz/php_yaz.c @@ -2468,7 +2468,7 @@ PHP_RINIT_FUNCTION(yaz) } zend_module_entry yaz_module_entry = { - "YAZ", + "yaz", yaz_functions, PHP_MINIT(yaz), PHP_MSHUTDOWN(yaz),