summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUwe Schindler <thetaphi@php.net>2003-05-31 15:32:50 +0000
committerUwe Schindler <thetaphi@php.net>2003-05-31 15:32:50 +0000
commit6aaa211e9c6ef7c935e2fca143ef5d86505bb5e8 (patch)
tree3cf447b41aa6472c7dbeccd8950a8fd7319bfdd5
parent80bdb812e1051b2321922813859345397cfb2c04 (diff)
downloadphp-git-6aaa211e9c6ef7c935e2fca143ef5d86505bb5e8.tar.gz
zend_alter_ini_entry now with PHP_INI_USER
-rw-r--r--sapi/nsapi/nsapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/nsapi/nsapi.c b/sapi/nsapi/nsapi.c
index 2b2fd16631..c42b07ae76 100644
--- a/sapi/nsapi/nsapi.c
+++ b/sapi/nsapi/nsapi.c
@@ -697,7 +697,7 @@ static void nsapi_php_ini_entries(NSLS_D TSRMLS_DC)
/* change the ini entry */
if (zend_alter_ini_entry(entry->param->name, strlen(entry->param->name)+1,
entry->param->value, strlen(entry->param->value),
- PHP_INI_SYSTEM, PHP_INI_STAGE_RUNTIME)==FAILURE) {
+ PHP_INI_USER, PHP_INI_STAGE_RUNTIME)==FAILURE) {
log_error(LOG_WARN, "php4_execute", NSG(sn), NSG(rq), "Cannot change php.ini key \"%s\" to \"%s\"", entry->param->name, entry->param->value);
}
}