mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
Fix bug #28878: php.ini values in php5_execute
This commit is contained in:
@@ -770,7 +770,7 @@ static void nsapi_php_ini_entries(NSLS_D TSRMLS_DC)
|
||||
/* exclude standard entries given to "Service" which should not go into ini entries */
|
||||
ok=1;
|
||||
for (j=0; nsapi_exclude_from_ini_entries[j]; j++) {
|
||||
ok&=(!strcasecmp(entry->param->name, nsapi_exclude_from_ini_entries[j]));
|
||||
ok&=(strcasecmp(entry->param->name, nsapi_exclude_from_ini_entries[j])!=0);
|
||||
}
|
||||
|
||||
if (ok) {
|
||||
|
||||
Reference in New Issue
Block a user