summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-02-26 15:36:23 +0000
committerZeev Suraski <zeev@php.net>2000-02-26 15:36:23 +0000
commit1261271839aa515a30685ccf1fba5d0b3811b866 (patch)
treec977cb48c69a5ad9693396b863ecba803d5d3872 /win32
parentfd344d36026b0f9d8f91be968284b4755d9eed76 (diff)
downloadphp-git-1261271839aa515a30685ccf1fba5d0b3811b866.tar.gz
Allow the INI callbacks to know at what stage PHP is
Diffstat (limited to 'win32')
-rw-r--r--win32/registry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/registry.c b/win32/registry.c
index 2d098a14a0..66ce5380d5 100644
--- a/win32/registry.c
+++ b/win32/registry.c
@@ -63,7 +63,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_alter_ini_entry(namebuf, namebuf_length+1, valuebuf, valuebuf_length+1, PHP_INI_PERDIR, PHP_INI_STAGE_ACTIVATE);
}
RegCloseKey(hKey);