|
From: Paul S. O. <ps...@us...> - 2002-01-28 00:56:58
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv27627 Modified Files: install.php Log Message: Fix some minor issues ... Index: install.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/install.php,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -r1.28 -r1.29 *** install.php 2002/01/02 07:19:23 1.28 --- install.php 2002/01/28 00:56:55 1.29 *************** *** 20,23 **** --- 20,26 ---- ***************************************************************************/ + error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables + set_magic_quotes_runtime(0); // Disable magic_quotes_runtime + $phpbb_root_path='./'; include($phpbb_root_path.'extension.inc'); |