From: Ilia Alshanetsky Date: Mon, 1 Oct 2007 15:00:24 +0000 (+0000) Subject: MFB: MFB: Fixed typo in previous patch X-Git-Tag: RELEASE_2_0_0a1~1693 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d68e6a71b4708091d92e21df40835cd4a3e12b5;p=php MFB: MFB: Fixed typo in previous patch --- diff --git a/Zend/zend_ini.c b/Zend/zend_ini.c index f33ad84d55..7696d1c803 100644 --- a/Zend/zend_ini.c +++ b/Zend/zend_ini.c @@ -445,7 +445,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 {