summaryrefslogtreecommitdiff
path: root/sapi/apache2/mod_php4.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-10-29 11:38:26 +0000
committerZeev Suraski <zeev@php.net>2000-10-29 11:38:26 +0000
commit1fd09132c2539400fa198ba3172aed9ab0a9b951 (patch)
treeadbb8641e79e9db6e354ac4869daf51061fa450f /sapi/apache2/mod_php4.c
parent825457ae64db20d0a35a272465e9a1dc1cf64e61 (diff)
downloadphp-git-1fd09132c2539400fa198ba3172aed9ab0a9b951.tar.gz
Initial steps to move the INI mechanism to the Zend engine
Diffstat (limited to 'sapi/apache2/mod_php4.c')
-rw-r--r--sapi/apache2/mod_php4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache2/mod_php4.c b/sapi/apache2/mod_php4.c
index 0ab579764e..7734034aca 100644
--- a/sapi/apache2/mod_php4.c
+++ b/sapi/apache2/mod_php4.c
@@ -409,7 +409,7 @@ static void init_request_info(SLS_D)
static int php_apache_alter_ini_entries(php_per_dir_entry *per_dir_entry)
{
- php_alter_ini_entry(per_dir_entry->key, per_dir_entry->key_length+1, per_dir_entry->value, per_dir_entry->value_length+1, per_dir_entry->type, 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+1, per_dir_entry->type, PHP_INI_STAGE_ACTIVATE);
return 0;
}