diff options
| author | Dominic <dev@snowgarden.ch> | 2015-06-19 12:31:03 +0200 |
|---|---|---|
| committer | Stanislav Malyshev <stas@php.net> | 2015-07-05 01:10:22 -0700 |
| commit | b27bcd90b357f155d3f6edec102525168c796ddc (patch) | |
| tree | 8df58eeaf756a91ada97d1c1c7ba497d12503ff2 | |
| parent | 04ca04f830767375ac3f6b792d4386cb4c7f5c62 (diff) | |
| download | php-git-b27bcd90b357f155d3f6edec102525168c796ddc.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 a861a03464..dc5d0ea525 100644 --- a/ext/phar/phar.c +++ b/ext/phar/phar.c @@ -195,8 +195,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() |
