summaryrefslogtreecommitdiff
path: root/sapi
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-08-06 12:54:57 +0000
committerAntony Dovgal <tony2001@php.net>2007-08-06 12:54:57 +0000
commit83e7324daefdc5e5d4a140dd80b37232b81a1c5c (patch)
tree23e1899efce7d1918cae8c7c2155c684ed28b8fb /sapi
parentcd32b4e2bb547b1f7f1a726bd2711a7932c758d4 (diff)
downloadphp-git-83e7324daefdc5e5d4a140dd80b37232b81a1c5c.tar.gz
fix build
Diffstat (limited to 'sapi')
-rw-r--r--sapi/apache/mod_php5.c2
1 files changed, 1 insertions, 1 deletions
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;
}
/* }}} */