summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominic <dev@snowgarden.ch>2015-06-19 12:31:03 +0200
committerDominic <dev@snowgarden.ch>2015-06-19 12:31:03 +0200
commit9c07ae634101eef7072a22cedca752f1738b87a9 (patch)
tree9407a728535e637f89a2972053e6633c1d009b1f
parentd079a1c9ea16ff2c5f40f82bd558355f78f103cf (diff)
downloadphp-git-9c07ae634101eef7072a22cedca752f1738b87a9.tar.gz
Cleaned white spaces in PHP_INI definition of phar
Removes unnecessary white spaces.
-rw-r--r--ext/phar/phar.c4
1 files changed, 2 insertions, 2 deletions
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()