From 63a970d3708e97381534016818821b997f2009fc Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Mon, 25 Aug 2008 17:15:37 +0000 Subject: fix bug #32925 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8788 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/constants.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/includes') 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); -- cgit v1.2.1