From 23c2c4febc6b77d7b76c331f30dc60380eb14fb2 Mon Sep 17 00:00:00 2001 From: cash Date: Sat, 6 Nov 2010 22:21:15 +0000 Subject: replaced usages of make_file_matrix() with new method makeFileMatrix() git-svn-id: http://code.elgg.org/elgg/trunk@7251 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/classes/ElggDiskFilestore.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engine/classes/ElggDiskFilestore.php') diff --git a/engine/classes/ElggDiskFilestore.php b/engine/classes/ElggDiskFilestore.php index 780598a87..c7ca9fd05 100644 --- a/engine/classes/ElggDiskFilestore.php +++ b/engine/classes/ElggDiskFilestore.php @@ -211,7 +211,7 @@ class ElggDiskFilestore extends ElggFilestore { throw new InvalidParameterException($msg); } - return $this->dir_root . $this->make_file_matrix($owner->guid) . $file->getFilename(); + return $this->dir_root . $this->makefileMatrix($owner->guid) . $file->getFilename(); } /** @@ -246,7 +246,7 @@ class ElggDiskFilestore extends ElggFilestore { */ public function getSize($prefix = '', $container_guid) { if ($container_guid) { - return get_dir_size($this->dir_root . $this->make_file_matrix($container_guid) . $prefix); + return get_dir_size($this->dir_root . $this->makefileMatrix($container_guid) . $prefix); } else { return false; } -- cgit v1.2.3