summaryrefslogtreecommitdiff
path: root/ext/mime_magic
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2004-01-16 11:15:13 +0000
committerfoobar <sniper@php.net>2004-01-16 11:15:13 +0000
commit99bc88b7c0c4df7c8ff4d2672795bbf018703c18 (patch)
treef414336898c70e43be13f5dbcea05f169318936a /ext/mime_magic
parent88ccaf664e4780e3b9986859720b1c1c34103a30 (diff)
downloadphp-git-99bc88b7c0c4df7c8ff4d2672795bbf018703c18.tar.gz
Fix the mime_magic.debug option init
Diffstat (limited to 'ext/mime_magic')
-rw-r--r--ext/mime_magic/mime_magic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mime_magic/mime_magic.c b/ext/mime_magic/mime_magic.c
index 4c89fcc4ab..d4df213f72 100644
--- a/ext/mime_magic/mime_magic.c
+++ b/ext/mime_magic/mime_magic.c
@@ -253,7 +253,7 @@ ZEND_GET_MODULE(mime_magic)
*/
PHP_INI_BEGIN()
STD_PHP_INI_ENTRY("mime_magic.magicfile", PHP_MIME_MAGIC_FILE_PATH, PHP_INI_SYSTEM, OnUpdateString, magicfile, zend_mime_magic_globals, mime_magic_globals)
-STD_PHP_INI_ENTRY("mime_magic.debug", "0", PHP_INI_SYSTEM, OnUpdateBool, debug, zend_mime_magic_globals, mime_magic_globals)
+STD_PHP_INI_BOOLEAN("mime_magic.debug", "0", PHP_INI_SYSTEM, OnUpdateBool, debug, zend_mime_magic_globals, mime_magic_globals)
PHP_INI_END()
/* }}} */