mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
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:
parent
6acfe21f0f
commit
5800a18557
1 changed files with 6 additions and 3 deletions
|
@ -2,10 +2,13 @@
|
||||||
<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();
|
||||||
|
|
||||||
switch ( SQL_LAYER )
|
switch ( SQL_LAYER )
|
||||||
|
|
Loading…
Add table
Reference in a new issue