1
0
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:
Uwe Schindler
2004-06-22 15:37:40 +00:00
parent 4ea8f4b9f2
commit e276023d82

View File

@@ -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) {