From 9ac354aab3e878b111fd58d2d878742de525ae05 Mon Sep 17 00:00:00 2001 From: Graham Eames Date: Sun, 4 Dec 2005 12:55:28 +0000 Subject: [PATCH] Remove the assumption that . will be in the include path - it is becoming more common on recent distributions that it is not by default git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@5318 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/admin/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/admin/index.php b/phpBB/admin/index.php index 659a4a9946..a530a2b3cf 100644 --- a/phpBB/admin/index.php +++ b/phpBB/admin/index.php @@ -60,7 +60,7 @@ if( isset($HTTP_GET_VARS['pane']) && $HTTP_GET_VARS['pane'] == 'left' ) { if( preg_match("/^admin_.*?\." . $phpEx . "$/", $file) ) { - include($file); + include('./' . $file); } }