From c0585e3a28eaf572975fe1c3db3721399b6af1cc Mon Sep 17 00:00:00 2001 From: real_nowhereman Date: Mon, 4 Jul 2011 10:08:05 +0000 Subject: [PATCH] fix file perms --- fp-includes/core/core.fileio.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fp-includes/core/core.fileio.php b/fp-includes/core/core.fileio.php index 06bde73..6c6652a 100755 --- a/fp-includes/core/core.fileio.php +++ b/fp-includes/core/core.fileio.php @@ -20,7 +20,7 @@ fclose($f); - @chmod($filename, 0666); + @chmod($filename, FILE_PERMISSIONS); //returns true on success @@ -55,4 +55,4 @@ return false; } -?> +