From 9c07ae634101eef7072a22cedca752f1738b87a9 Mon Sep 17 00:00:00 2001 From: Dominic Date: Fri, 19 Jun 2015 12:31:03 +0200 Subject: [PATCH] Cleaned white spaces in PHP_INI definition of phar Removes unnecessary white spaces. --- ext/phar/phar.c | 4 ++-- 1 file 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() -- 2.50.1