From: Uwe Schindler Date: Sat, 31 May 2003 15:32:50 +0000 (+0000) Subject: zend_alter_ini_entry now with PHP_INI_USER X-Git-Tag: RELEASE_1_0_2~482 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6aaa211e9c6ef7c935e2fca143ef5d86505bb5e8;p=php zend_alter_ini_entry now with PHP_INI_USER --- 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); } }