summaryrefslogtreecommitdiffstats
path: root/wp-includes/wpmu-functions.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-09-28 10:30:23 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-09-28 10:30:23 +0000
commit29c2072f5e5b03828c3bfa2af0b1c1cc3fe30923 (patch)
tree5eed5ade60708d5c849c9f68b382e5eaf8405ad3 /wp-includes/wpmu-functions.php
parentbafa5945fee3311ab6d4a0c442376345a019a7be (diff)
downloadwordpress-mu-29c2072f5e5b03828c3bfa2af0b1c1cc3fe30923.tar.gz
wordpress-mu-29c2072f5e5b03828c3bfa2af0b1c1cc3fe30923.tar.xz
wordpress-mu-29c2072f5e5b03828c3bfa2af0b1c1cc3fe30923.zip
Use UPLOADS constant and update blogs.php (fixes #168)
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@777 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/wpmu-functions.php')
-rw-r--r--wp-includes/wpmu-functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-includes/wpmu-functions.php b/wp-includes/wpmu-functions.php
index 823e4ee..25df62d 100644
--- a/wp-includes/wpmu-functions.php
+++ b/wp-includes/wpmu-functions.php
@@ -35,7 +35,7 @@ function wpmu_checkAvailableSpace($action) {
if( $spaceAllowed == false )
$spaceAllowed = 10;
- $dirName = ABSPATH."wp-content/blogs.dir/".$blog_id."/files/";
+ $dirName = constant( "ABSPATH" ) . constant( "UPLOADS" );
$dir = dir($dirName);
$size = 0;