aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-03-08 16:29:04 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-03-08 16:29:04 +0000
commit5800a185570e0f53a2f9ca726d858f9e49aea0b3 (patch)
tree3a048f8efeb17e93a03d8be3da5e97a2b634fa08
parent6acfe21f0f287818d744df56df69a5b022b5cc37 (diff)
downloadforums-5800a185570e0f53a2f9ca726d858f9e49aea0b3.tar
forums-5800a185570e0f53a2f9ca726d858f9e49aea0b3.tar.gz
forums-5800a185570e0f53a2f9ca726d858f9e49aea0b3.tar.bz2
forums-5800a185570e0f53a2f9ca726d858f9e49aea0b3.tar.xz
forums-5800a185570e0f53a2f9ca726d858f9e49aea0b3.zip
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
-rw-r--r--phpBB/update_to_RC3.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/phpBB/update_to_RC3.php b/phpBB/update_to_RC3.php
index 69f8628fc2..605844eca4 100644
--- a/phpBB/update_to_RC3.php
+++ b/phpBB/update_to_RC3.php
@@ -2,10 +2,13 @@
<body>
<?php
-$phpbb_root_path = "./";
+$phpbb_root_path = './';
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();
switch ( SQL_LAYER )