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
This commit is contained in:
Graham Eames 2005-12-04 12:55:28 +00:00
parent a0e567754e
commit 9ac354aab3

View file

@ -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);
}
}