aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_compress.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-08-16 19:06:18 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-08-16 19:06:18 +0000
commit068096531f297d188afea88190cd838ccae662cb (patch)
tree7109437c35b6fefaf83525969afbb720e314e9c6 /phpBB/includes/functions_compress.php
parentda65cd13974a42fe5a551a0b66cb3f3a6db6dcf4 (diff)
downloadforums-068096531f297d188afea88190cd838ccae662cb.tar
forums-068096531f297d188afea88190cd838ccae662cb.tar.gz
forums-068096531f297d188afea88190cd838ccae662cb.tar.bz2
forums-068096531f297d188afea88190cd838ccae662cb.tar.xz
forums-068096531f297d188afea88190cd838ccae662cb.zip
the chmod change i already had within the changelog (by mistake). This should further secure writable directories and created files.
Installation need to be tested on different hosts. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8763 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_compress.php')
-rw-r--r--phpBB/includes/functions_compress.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/includes/functions_compress.php b/phpBB/includes/functions_compress.php
index 021079deef..18106a155b 100644
--- a/phpBB/includes/functions_compress.php
+++ b/phpBB/includes/functions_compress.php
@@ -228,7 +228,7 @@ class compress_zip extends compress
{
trigger_error("Could not create directory $folder");
}
- @chmod($str, 0777);
+ phpbb_chmod($str, 'rwrite');
}
}
}
@@ -257,7 +257,7 @@ class compress_zip extends compress
{
trigger_error("Could not create directory $folder");
}
- @chmod($str, 0777);
+ phpbb_chmod($str, 'rwrite');
}
}
}
@@ -544,7 +544,7 @@ class compress_tar extends compress
{
trigger_error("Could not create directory $folder");
}
- @chmod($str, 0777);
+ phpbb_chmod($str, 'rwrite');
}
}
}
@@ -571,7 +571,7 @@ class compress_tar extends compress
{
trigger_error("Could not create directory $folder");
}
- @chmod($str, 0777);
+ phpbb_chmod($str, 'rwrite');
}
}
@@ -580,7 +580,7 @@ class compress_tar extends compress
{
trigger_error("Couldn't create file $filename");
}
- @chmod($target_filename, 0777);
+ phpbb_chmod($target_filename, 'rwrite');
// Grab the file contents
fwrite($fp, ($filesize) ? $fzread($this->fp, ($filesize + 511) &~ 511) : '', $filesize);