diff options
author | Zeev Suraski <zeev@php.net> | 2000-10-29 11:38:26 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-10-29 11:38:26 +0000 |
commit | 1fd09132c2539400fa198ba3172aed9ab0a9b951 (patch) | |
tree | adbb8641e79e9db6e354ac4869daf51061fa450f /win32 | |
parent | 825457ae64db20d0a35a272465e9a1dc1cf64e61 (diff) | |
download | php-git-1fd09132c2539400fa198ba3172aed9ab0a9b951.tar.gz |
Initial steps to move the INI mechanism to the Zend engine
Diffstat (limited to 'win32')
-rw-r--r-- | win32/registry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/registry.c b/win32/registry.c index f29de501cf..ac34902af7 100644 --- a/win32/registry.c +++ b/win32/registry.c @@ -69,7 +69,7 @@ void UpdateIniFromRegistry(char *path) continue; } /*printf("%s -> %s\n", namebuf, valuebuf);*/ - php_alter_ini_entry(namebuf, namebuf_length+1, valuebuf, valuebuf_length+1, PHP_INI_PERDIR, PHP_INI_STAGE_ACTIVATE); + zend_alter_ini_entry(namebuf, namebuf_length+1, valuebuf, valuebuf_length+1, PHP_INI_PERDIR, PHP_INI_STAGE_ACTIVATE); } RegCloseKey(hKey); |