aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2015-01-29 00:08:23 +0100
committerAndreas Fischer <bantu@phpbb.com>2015-01-29 00:08:23 +0100
commit6f5524de26ae9df2c15a3f8218770dad0c72e3af (patch)
tree36476a25609ee06a378fdc09b541a08d39ac4fd2 /phpBB
parentf48cc8bbe9792e0bf9182415c09cb5f50412b5a6 (diff)
parent872caf805cae8608ef6500a2c1a90795487c6235 (diff)
downloadforums-6f5524de26ae9df2c15a3f8218770dad0c72e3af.tar
forums-6f5524de26ae9df2c15a3f8218770dad0c72e3af.tar.gz
forums-6f5524de26ae9df2c15a3f8218770dad0c72e3af.tar.bz2
forums-6f5524de26ae9df2c15a3f8218770dad0c72e3af.tar.xz
forums-6f5524de26ae9df2c15a3f8218770dad0c72e3af.zip
Merge branch 'prep-release-3.0.13' into develop-olympus
* prep-release-3.0.13: [ticket/13549] Do not exit when ORIG_PATH_INFO just contains SCRIPT_NAME.
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/startup.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/startup.php b/phpBB/includes/startup.php
index 92639fc5bd..9bbbf4fd4c 100644
--- a/phpBB/includes/startup.php
+++ b/phpBB/includes/startup.php
@@ -105,7 +105,7 @@ function deregister_globals()
function phpbb_has_trailing_path($phpEx)
{
// Check if path_info is being used
- if (!empty($_SERVER['PATH_INFO']) || !empty($_SERVER['ORIG_PATH_INFO']))
+ if (!empty($_SERVER['PATH_INFO']) || (!empty($_SERVER['ORIG_PATH_INFO']) && $_SERVER['SCRIPT_NAME'] != $_SERVER['ORIG_PATH_INFO']))
{
return true;
}