diff options
author | Stig Bakken <ssb@php.net> | 2000-03-06 18:44:01 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2000-03-06 18:44:01 +0000 |
commit | d02fe90b009d3145b0b9d24510c6869c68d2b99b (patch) | |
tree | e7ad756d7b5a2ed3a082a63dc97e3dd95a5cd44c /ext/mysql/php_mysql.c | |
parent | 31c9ad183133a1d24a686b325414513a4373a680 (diff) | |
download | php-git-d02fe90b009d3145b0b9d24510c6869c68d2b99b.tar.gz |
Change extension names in all extensions' zend_module_entry to their
directory name.
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r-- | ext/mysql/php_mysql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index d04730f8d9..e9af97760e 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -146,7 +146,7 @@ function_entry mysql_functions[] = { }; zend_module_entry mysql_module_entry = { - "MySQL", mysql_functions, PHP_MINIT(mysql), PHP_MSHUTDOWN(mysql), PHP_RINIT(mysql), NULL, + "mysql", mysql_functions, PHP_MINIT(mysql), PHP_MSHUTDOWN(mysql), PHP_RINIT(mysql), NULL, PHP_MINFO(mysql), STANDARD_MODULE_PROPERTIES }; |