diff options
author | Edin Kadribasic <edink@php.net> | 2003-05-08 14:42:31 +0000 |
---|---|---|
committer | Edin Kadribasic <edink@php.net> | 2003-05-08 14:42:31 +0000 |
commit | 97f3a35d73015647aa492696b57f31d15ad52568 (patch) | |
tree | 995d6be448d615c3f814219810ae8b3c768fc5bd /sapi/apache/mod_php5.c | |
parent | a874c33eb11dec3cc9fa560269c7d740938f1294 (diff) | |
download | php-git-97f3a35d73015647aa492696b57f31d15ad52568.tar.gz |
Fixed MFB side effect
Diffstat (limited to 'sapi/apache/mod_php5.c')
-rw-r--r-- | sapi/apache/mod_php5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/mod_php5.c b/sapi/apache/mod_php5.c index d90b22f533..5565db62a9 100644 --- a/sapi/apache/mod_php5.c +++ b/sapi/apache/mod_php5.c @@ -534,7 +534,7 @@ static int send_php(request_rec *r, int display_source_mode, char *filename) HashTable *per_dir_conf; TSRMLS_FETCH(); - per_dir_conf = (HashTable *) get_module_config(r->per_dir_config, &php4_module); + per_dir_conf = (HashTable *) get_module_config(r->per_dir_config, &php5_module); if (per_dir_conf) { zend_hash_apply((HashTable *) per_dir_conf, (apply_func_t) php_apache_alter_ini_entries TSRMLS_CC); } |