From: Zeev Suraski Date: Sat, 26 Feb 2000 16:07:05 +0000 (+0000) Subject: Compile fix X-Git-Tag: PHP-4.0-RC1~392 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1bcdcebe6715aec029b43feb41d4a9dc4e3ad292;p=php Compile fix --- 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; }