diff options
author | Marcus Boerger <helly@php.net> | 2008-02-03 14:35:59 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2008-02-03 14:35:59 +0000 |
commit | fa94dabd97f85e53dc8e67d1fbed67324b2b470d (patch) | |
tree | 1d03db11d2a1310b429b5ae2cb13ac0ee947ab7f /main/php_ini.c | |
parent | 1ecdaa388586c368b0fc489f80811b55bc894985 (diff) | |
download | php-git-fa94dabd97f85e53dc8e67d1fbed67324b2b470d.tar.gz |
- MFH Rename dump_config_hash() to get_config_hash() as it doesn't dump
Diffstat (limited to 'main/php_ini.c')
-rw-r--r-- | main/php_ini.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/main/php_ini.c b/main/php_ini.c index 9ed975529e..8a103a08a3 100644 --- a/main/php_ini.c +++ b/main/php_ini.c @@ -840,13 +840,10 @@ PHPAPI int cfg_get_string(char *varname, char **result) } /* }}} */ -#if ZEND_DEBUG -#include "php_ini.h" -PHPAPI HashTable get_configuration_hash(void) +PHPAPI HashTable* php_ini_get_configuration_hash(void) /* {{{ */ { - return configuration_hash; -} -#endif + return &configuration_hash; +} /* }}} */ /* * Local variables: |