Change include common to only include required files ... stop errors with people who've disabled the board for the update

git-svn-id: file:///svn/phpbb/trunk@2281 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2002-03-08 16:29:04 +00:00
parent 6acfe21f0f
commit 5800a18557

View file

@ -2,9 +2,12 @@
<body> <body>
<?php <?php
$phpbb_root_path = "./"; $phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx); include($phpbb_root_path . 'config.'.$phpEx);
include($phpbb_root_path . 'includes/constants.'.$phpEx);
include($phpbb_root_path . 'includes/functions.'.$phpEx);
include($phpbb_root_path . 'includes/db.'.$phpEx);
$sql = array(); $sql = array();