]> granicus.if.org Git - php/commitdiff
Cleaned white spaces in PHP_INI definition of phar
authorDominic <dev@snowgarden.ch>
Fri, 19 Jun 2015 10:31:03 +0000 (12:31 +0200)
committerDominic <dev@snowgarden.ch>
Fri, 19 Jun 2015 10:31:03 +0000 (12:31 +0200)
Removes unnecessary white spaces.

ext/phar/phar.c

index 32f641624a75db7c561b23c0c67b803a304140fe..1e172f878ce5e6bb9e91ed4d1006bcd331d9cd11 100644 (file)
@@ -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()