From 1aad3f884a3d6f504a365ac71e6e75f93e44afcc Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Mon, 28 Jan 2002 00:56:55 +0000 Subject: [PATCH] Fix some minor issues ... git-svn-id: file:///svn/phpbb/trunk@1976 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/phpBB/install.php b/phpBB/install.php index eb1af053ff..a6cdd9ab4a 100644 --- a/phpBB/install.php +++ b/phpBB/install.php @@ -19,6 +19,9 @@ * ***************************************************************************/ +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');