]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
fixed typos on method name
authorCash Costello <cash.costello@gmail.com>
Sun, 21 Apr 2013 15:54:42 +0000 (11:54 -0400)
committerCash Costello <cash.costello@gmail.com>
Sun, 21 Apr 2013 15:54:42 +0000 (11:54 -0400)
engine/classes/ElggDiskFilestore.php

index ded6534360d66be57616bcbce7bccdf8f24be862..663d33c02a784e08e305560a9390d96fc7619c6e 100644 (file)
@@ -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