diff options
| author | Dominic <dev@snowgarden.ch> | 2015-06-19 12:31:03 +0200 |
|---|---|---|
| committer | Dominic <dev@snowgarden.ch> | 2015-06-19 12:31:03 +0200 |
| commit | 9c07ae634101eef7072a22cedca752f1738b87a9 (patch) | |
| tree | 9407a728535e637f89a2972053e6633c1d009b1f | |
| parent | d079a1c9ea16ff2c5f40f82bd558355f78f103cf (diff) | |
| download | php-git-9c07ae634101eef7072a22cedca752f1738b87a9.tar.gz | |
Cleaned white spaces in PHP_INI definition of phar
Removes unnecessary white spaces.
| -rw-r--r-- | ext/phar/phar.c | 4 |
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() |
