From 1bcdcebe6715aec029b43feb41d4a9dc4e3ad292 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Sat, 26 Feb 2000 16:07:05 +0000 Subject: [PATCH] Compile fix --- sapi/apache/mod_php4.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c index e411604720..7559436192 100644 --- a/sapi/apache/mod_php4.c +++ b/sapi/apache/mod_php4.c @@ -55,7 +55,6 @@ #include "util_script.h" -#include "php_version.h" #include "mod_php4.h" #if HAVE_MOD_DAV # include "mod_dav.h" @@ -395,7 +394,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_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; } -- 2.50.1