diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2007-10-01 14:59:55 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2007-10-01 14:59:55 +0000 |
commit | bb8b632dc105a01a429b6866143be083f100a785 (patch) | |
tree | 9c88e5284956bf140da2094d47a1b1060c27ec10 /Zend/zend_ini.c | |
parent | 086289983e574e1c396f57a1a2e238f899e543cd (diff) | |
download | php-git-bb8b632dc105a01a429b6866143be083f100a785.tar.gz |
Fixed typo in the previous patch
Diffstat (limited to 'Zend/zend_ini.c')
-rw-r--r-- | Zend/zend_ini.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_ini.c b/Zend/zend_ini.c index 072405b40b..5adb6f0947 100644 --- a/Zend/zend_ini.c +++ b/Zend/zend_ini.c @@ -444,7 +444,7 @@ ZEND_INI_DISP(zend_ini_boolean_displayer_cb) /* {{{ */ value = 1; } else if (tmp_value_len == 2 && strcasecmp(tmp_value, "on") == 0) { value = 1; - } else (tmp_value) { + } else { value = atoi(tmp_value); } } else { |