diff options
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/constants.php | 4 | ||||
-rw-r--r-- | phpBB/install/index.php | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php index 826afb3832..91fc9224c4 100644 --- a/phpBB/includes/constants.php +++ b/phpBB/includes/constants.php @@ -177,10 +177,10 @@ define('REFERER_VALIDATE_HOST', 1); define('REFERER_VALIDATE_PATH', 2); // phpbb_chmod() permissions -define('CHMOD_ALL', 7); +@define('CHMOD_ALL', 7); @define('CHMOD_READ', 4); @define('CHMOD_WRITE', 2); -define('CHMOD_EXECUTE', 1); +@define('CHMOD_EXECUTE', 1); // Additional constants define('VOTE_CONVERTED', 127); diff --git a/phpBB/install/index.php b/phpBB/install/index.php index dc40d7bea0..3d11da67a6 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -233,8 +233,10 @@ 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_ALL', 7); define('CHMOD_READ', 4); define('CHMOD_WRITE', 2); +define('CHMOD_EXECUTE', 1); $mode = request_var('mode', 'overview'); $sub = request_var('sub', ''); |