diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-05-09 00:29:07 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-05-09 00:29:07 +0000 |
commit | 1df6aa874f88970579d56ab88df46cad4764d7e0 (patch) | |
tree | 1798171fa67f6e1d136d15c892acc1cfc5a73354 /include/section_init.inc.php | |
parent | b1c336f7bc3ba99145a7624efb7041664406bd8e (diff) |
fix: URLs not working with some ISPs that set _SERVER['PATH_INFO'] in a
non standard way
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1305 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/section_init.inc.php')
-rw-r--r-- | include/section_init.inc.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/section_init.inc.php b/include/section_init.inc.php index 1d5949e63..806679e02 100644 --- a/include/section_init.inc.php +++ b/include/section_init.inc.php @@ -53,7 +53,10 @@ $page['section'] = 'categories'; -if ( isset($_SERVER["PATH_INFO"]) and !empty($_SERVER["PATH_INFO"]) ) +// some ISPs set PATH_INFO to empty string or to SCRIPT_FILENAME while in the +// default apache implementation it is not set +if ( $conf['question_mark_in_urls']==false and + isset($_SERVER["PATH_INFO"]) and !empty($_SERVER["PATH_INFO"]) ) { $rewritten = $_SERVER["PATH_INFO"]; $rewritten = str_replace('//', '/', $rewritten); |