diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2006-01-06 18:06:38 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2006-01-06 18:06:38 +0000 |
commit | 4d64a617c364612f8fbdd9ef73340a51f7416831 (patch) | |
tree | c9477c8d439752ef6294aa9bb92af1cffd60d7d2 /sapi/apache/mod_php5.c | |
parent | 02f405ccb1f11050e203119e2d5cc13fdb415983 (diff) | |
download | php-git-4d64a617c364612f8fbdd9ef73340a51f7416831.tar.gz |
MFH: I don't recall the reason for messing with r->allowed here, so let's
get rid of it (and see who screams). This should fix bug #32561
Diffstat (limited to 'sapi/apache/mod_php5.c')
-rw-r--r-- | sapi/apache/mod_php5.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sapi/apache/mod_php5.c b/sapi/apache/mod_php5.c index f7fe4aea35..a6b40d8e43 100644 --- a/sapi/apache/mod_php5.c +++ b/sapi/apache/mod_php5.c @@ -593,7 +593,6 @@ static int send_php(request_rec *r, int display_source_mode, char *filename) */ if (!AP(engine)) { r->content_type = php_apache_get_default_mimetype(r TSRMLS_CC); - r->allowed |= (1 << METHODS) - 1; zend_try { zend_ini_deactivate(TSRMLS_C); } zend_end_try(); @@ -851,7 +850,6 @@ static int php_xbithack_handler(request_rec * r) TSRMLS_FETCH(); if (!(r->finfo.st_mode & S_IXUSR)) { - r->allowed |= (1 << METHODS) - 1; return DECLINED; } per_dir_conf = (HashTable *) get_module_config(r->per_dir_config, &php5_module); @@ -859,7 +857,6 @@ static int php_xbithack_handler(request_rec * r) zend_hash_apply((HashTable *) per_dir_conf, (apply_func_t) php_apache_alter_ini_entries TSRMLS_CC); } if(!AP(xbithack)) { - r->allowed |= (1 << METHODS) - 1; zend_try { zend_ini_deactivate(TSRMLS_C); } zend_end_try(); |