1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 10:16:36 +02:00

fix installation by defining our needed CHMOD_READ and CHMOD_WRITE constants.

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8787 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2008-08-24 11:35:17 +00:00
parent 44148941cc
commit dc49e0fdff
3 changed files with 10 additions and 4 deletions

View File

@@ -230,6 +230,12 @@ include($phpbb_root_path . 'language/' . $language . '/acp/board.' . $phpEx);
include($phpbb_root_path . 'language/' . $language . '/install.' . $phpEx);
include($phpbb_root_path . 'language/' . $language . '/posting.' . $phpEx);
// 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_READ', 4);
define('CHMOD_WRITE', 2);
$mode = request_var('mode', 'overview');
$sub = request_var('sub', '');