From cbacffd9fc5787773fabab3b2479ad4cd0bc6f19 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Mon, 25 Aug 2008 17:17:25 +0000 Subject: fix bug #32925 git-svn-id: file:///svn/phpbb/trunk@8789 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/index.php | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'phpBB/install') diff --git a/phpBB/install/index.php b/phpBB/install/index.php index e3bfcba499..613afa728c 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -230,6 +230,14 @@ include(PHPBB_ROOT_PATH . 'language/' . $language . '/acp/board.' . PHP_EXT); include(PHPBB_ROOT_PATH . 'language/' . $language . '/install.' . PHP_EXT); include(PHPBB_ROOT_PATH . 'language/' . $language . '/posting.' . PHP_EXT); +// usually we would need every single constant here - and it would be consistent. For 3.0.x, use a dirty hack... :( + +// Define needed constants +define('CHMOD_ALL', 7); +define('CHMOD_READ', 4); +define('CHMOD_WRITE', 2); +define('CHMOD_EXECUTE', 1); + $mode = request_var('mode', 'overview'); $sub = request_var('sub', ''); -- cgit v1.2.1