diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-06 22:21:15 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-06 22:21:15 +0000 |
commit | 23c2c4febc6b77d7b76c331f30dc60380eb14fb2 (patch) | |
tree | 21e4ff95f6ca011c5f0caef6422a4c46a1ecf821 /engine | |
parent | a8d85022734394d99cae9001206eda71e2101371 (diff) | |
download | elgg-23c2c4febc6b77d7b76c331f30dc60380eb14fb2.tar.gz elgg-23c2c4febc6b77d7b76c331f30dc60380eb14fb2.tar.bz2 |
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
Diffstat (limited to 'engine')
-rw-r--r-- | engine/classes/ElggDiskFilestore.php | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |