Preserve suid and sgid bits when creating new directories. fixes #2190

git-svn-id: https://develop.svn.wordpress.org/trunk@3388 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2006-01-02 02:50:59 +00:00
parent 7b1816ee53
commit f34cbd8d67
2 changed files with 9 additions and 3 deletions

View File

@@ -205,7 +205,9 @@ class WP_Object_Cache {
}
if (!file_exists($this->cache_dir.$make_dir."index.php")) {
$file_perms = $perms & 0000666;
@ touch($this->cache_dir.$make_dir."index.php");
@ chmod($this->cache_dir.$make_dir."index.php", $file_perms);
}
}
@@ -268,7 +270,8 @@ class WP_Object_Cache {
// Give the new dirs the same perms as wp-content.
$stat = stat(ABSPATH.'wp-content');
$dir_perms = $stat['mode'] & 0000777; // Get the permission bits.
$dir_perms = $stat['mode'] & 0007777; // Get the permission bits.
$file_perms = $dir_perms & 0000666; // Remove execute bits for files.
// Make the base cache dir.
if (!file_exists($this->cache_dir)) {
@@ -279,6 +282,7 @@ class WP_Object_Cache {
if (!file_exists($this->cache_dir."index.php")) {
@ touch($this->cache_dir."index.php");
@ chmod($this->cache_dir."index.php", $file_perms);
}
// Acquire a write lock.
@@ -314,6 +318,7 @@ class WP_Object_Cache {
@ unlink($temp_file);
}
}
@ chmod($cache_file, $file_perms);
}
}