From: Kristian Köhntopp Date: Mon, 26 Jun 2000 14:55:38 +0000 (+0000) Subject: Corrected a syntax error: Macro requires braces. X-Git-Tag: php-4.0.1RC2~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c32d120b2daa05b6b7d15eef6670a52f316b657;p=php Corrected a syntax error: Macro requires braces. --- diff --git a/ext/standard/info.c b/ext/standard/info.c index 0e59ed6990..e2295b8534 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -642,10 +642,11 @@ PHP_FUNCTION(zend_logo_guid) Return the current SAPI module name */ PHP_FUNCTION(php_sapi_name) { - if(sapi_module.name) + if (sapi_module.name) { RETURN_STRING(sapi_module.name,1); - else + } else { RETURN_FALSE; + } } /* }}} */