|
From: Paul S. O. <ps...@us...> - 2002-03-08 16:29:09
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv16857 Modified Files: update_to_RC3.php Log Message: Change include common to only include required files ... stop errors with people who've disabled the board for the update Index: update_to_RC3.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/update_to_RC3.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** update_to_RC3.php 3 Mar 2002 15:38:22 -0000 1.15 --- update_to_RC3.php 8 Mar 2002 16:29:04 -0000 1.16 *************** *** 3,10 **** <?php ! $phpbb_root_path = "./"; include($phpbb_root_path . 'extension.inc'); ! include($phpbb_root_path . 'common.'.$phpEx); ! $sql = array(); --- 3,13 ---- <?php ! $phpbb_root_path = './'; include($phpbb_root_path . 'extension.inc'); ! 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(); |