diff options
author | Uwe Schindler <thetaphi@php.net> | 2003-05-31 15:32:50 +0000 |
---|---|---|
committer | Uwe Schindler <thetaphi@php.net> | 2003-05-31 15:32:50 +0000 |
commit | 6aaa211e9c6ef7c935e2fca143ef5d86505bb5e8 (patch) | |
tree | 3cf447b41aa6472c7dbeccd8950a8fd7319bfdd5 | |
parent | 80bdb812e1051b2321922813859345397cfb2c04 (diff) | |
download | php-git-6aaa211e9c6ef7c935e2fca143ef5d86505bb5e8.tar.gz |
zend_alter_ini_entry now with PHP_INI_USER
-rw-r--r-- | sapi/nsapi/nsapi.c | 2 |
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); } } |