From: Antony Dovgal Date: Mon, 6 Aug 2007 12:54:57 +0000 (+0000) Subject: fix build X-Git-Tag: php-5.2.4RC2~93 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83e7324daefdc5e5d4a140dd80b37232b81a1c5c;p=php fix build --- diff --git a/sapi/apache/mod_php5.c b/sapi/apache/mod_php5.c index c1780e59e3..58e346e2e0 100644 --- a/sapi/apache/mod_php5.c +++ b/sapi/apache/mod_php5.c @@ -548,7 +548,7 @@ static void init_request_info(TSRMLS_D) */ static int php_apache_alter_ini_entries(php_per_dir_entry *per_dir_entry TSRMLS_DC) { - zend_alter_ini_entry(per_dir_entry->key, per_dir_entry->key_length+1, per_dir_entry->value, per_dir_entry->value_length, per_dir_entry->type, data->htaccess?PHP_INI_STAGE_HTACCESS:PHP_INI_STAGE_ACTIVATE); + zend_alter_ini_entry(per_dir_entry->key, per_dir_entry->key_length+1, per_dir_entry->value, per_dir_entry->value_length, per_dir_entry->type, per_dir_entry->htaccess?PHP_INI_STAGE_HTACCESS:PHP_INI_STAGE_ACTIVATE); return 0; } /* }}} */