summaryrefslogtreecommitdiffstats
path: root/wp-inst/wp-includes/cache.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-11-22 09:42:38 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2005-11-22 09:42:38 +0000
commitfd1daa507e7a138d175a98d26fcd70c38c67c324 (patch)
treef3249c60e421dc91d5fd551e69c9f068a3d47eb9 /wp-inst/wp-includes/cache.php
parentff3bf19b3af49593d927b50d5c231526159821b3 (diff)
downloadwordpress-mu-fd1daa507e7a138d175a98d26fcd70c38c67c324.tar.gz
wordpress-mu-fd1daa507e7a138d175a98d26fcd70c38c67c324.tar.xz
wordpress-mu-fd1daa507e7a138d175a98d26fcd70c38c67c324.zip
WP Merge
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@444 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst/wp-includes/cache.php')
-rw-r--r--wp-inst/wp-includes/cache.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-inst/wp-includes/cache.php b/wp-inst/wp-includes/cache.php
index a24f9f5..3dba09a 100644
--- a/wp-inst/wp-includes/cache.php
+++ b/wp-inst/wp-includes/cache.php
@@ -272,7 +272,7 @@ class WP_Object_Cache {
// Make the base cache dir.
if (!file_exists($this->cache_dir)) {
- if (!mkdir($this->cache_dir))
+ if (! @ mkdir($this->cache_dir))
return;
@ chmod($this->cache_dir, $dir_perms);
}