From: Dominic Date: Fri, 19 Jun 2015 10:31:03 +0000 (+0200) Subject: Cleaned white spaces in PHP_INI definition of phar X-Git-Tag: php-7.0.0beta1~12^2~51^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c07ae634101eef7072a22cedca752f1738b87a9;p=php Cleaned white spaces in PHP_INI definition of phar Removes unnecessary white spaces. --- diff --git a/ext/phar/phar.c b/ext/phar/phar.c index 32f641624a..1e172f878c 100644 --- a/ext/phar/phar.c +++ b/ext/phar/phar.c @@ -194,8 +194,8 @@ ZEND_INI_MH(phar_ini_cache_list) /* {{{ */ /* }}} */ PHP_INI_BEGIN() - STD_PHP_INI_BOOLEAN( "phar.readonly", "1", PHP_INI_ALL, phar_ini_modify_handler, readonly, zend_phar_globals, phar_globals) - STD_PHP_INI_BOOLEAN( "phar.require_hash", "1", PHP_INI_ALL, phar_ini_modify_handler, require_hash, zend_phar_globals, phar_globals) + STD_PHP_INI_BOOLEAN("phar.readonly", "1", PHP_INI_ALL, phar_ini_modify_handler, readonly, zend_phar_globals, phar_globals) + STD_PHP_INI_BOOLEAN("phar.require_hash", "1", PHP_INI_ALL, phar_ini_modify_handler, require_hash, zend_phar_globals, phar_globals) STD_PHP_INI_ENTRY("phar.cache_list", "", PHP_INI_SYSTEM, phar_ini_cache_list, cache_list, zend_phar_globals, phar_globals) PHP_INI_END()