From b219df4b67d009a7c0e333a8d95ebfe6a906e598 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Mon, 6 Aug 2007 12:54:35 +0000 Subject: [PATCH] fix build --- sapi/apache/mod_php.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapi/apache/mod_php.c b/sapi/apache/mod_php.c index aa58aeee2a..997a320912 100644 --- a/sapi/apache/mod_php.c +++ b/sapi/apache/mod_php.c @@ -541,7 +541,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; } /* }}} */ -- 2.40.0