From: Antony Dovgal Date: Thu, 23 Aug 2007 18:42:42 +0000 (+0000) Subject: MFH: revert the patch which breaks multithreaded servers X-Git-Tag: php-5.2.4RC3~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8a3b3e9365b9de190d69dd08bc3515e9d65c3760;p=php MFH: revert the patch which breaks multithreaded servers --- diff --git a/Zend/zend_ini.c b/Zend/zend_ini.c index 9b2a24c03c..9f327e9e02 100644 --- a/Zend/zend_ini.c +++ b/Zend/zend_ini.c @@ -243,10 +243,6 @@ ZEND_API int zend_alter_ini_entry(char *name, uint name_length, char *new_value, return FAILURE; } - if (stage == ZEND_INI_STAGE_ACTIVATE && modify_type == ZEND_INI_SYSTEM) { - ini_entry->modifiable = ZEND_INI_SYSTEM; - } - if (!(ini_entry->modifiable & modify_type)) { return FAILURE; }