aboutsummaryrefslogtreecommitdiff
path: root/engine/classes
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2013-04-21 11:54:42 -0400
committerCash Costello <cash.costello@gmail.com>2013-04-21 11:54:42 -0400
commited99f7b064a0749603f16644ba735de7ba93c17e (patch)
tree8438ad0bf72a02c955cf6b618fff2afef78acfd9 /engine/classes
parent27876994f5931f3d7b1348e4190dedbe68223239 (diff)
downloadelgg-ed99f7b064a0749603f16644ba735de7ba93c17e.tar.gz
elgg-ed99f7b064a0749603f16644ba735de7ba93c17e.tar.bz2
fixed typos on method name
Diffstat (limited to 'engine/classes')
-rw-r--r--engine/classes/ElggDiskFilestore.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/classes/ElggDiskFilestore.php b/engine/classes/ElggDiskFilestore.php
index ded653436..663d33c02 100644
--- a/engine/classes/ElggDiskFilestore.php
+++ b/engine/classes/ElggDiskFilestore.php
@@ -213,7 +213,7 @@ class ElggDiskFilestore extends ElggFilestore {
throw new InvalidParameterException($msg);
}
- return $this->dir_root . $this->makefileMatrix($owner_guid) . $file->getFilename();
+ return $this->dir_root . $this->makeFileMatrix($owner_guid) . $file->getFilename();
}
/**
@@ -248,7 +248,7 @@ class ElggDiskFilestore extends ElggFilestore {
*/
public function getSize($prefix = '', $container_guid) {
if ($container_guid) {
- return get_dir_size($this->dir_root . $this->makefileMatrix($container_guid) . $prefix);
+ return get_dir_size($this->dir_root . $this->makeFileMatrix($container_guid) . $prefix);
} else {
return false;
}
@@ -335,7 +335,7 @@ class ElggDiskFilestore extends ElggFilestore {
protected function make_file_matrix($identifier) {
elgg_deprecated_notice('ElggDiskFilestore::make_file_matrix() is deprecated by ::makeFileMatrix()', 1.8);
- return $this->makefileMatrix($identifier);
+ return $this->makeFileMatrix($identifier);
}
// @codingStandardsIgnoreEnd