]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
replaced usages of make_file_matrix() with new method makeFileMatrix()
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sat, 6 Nov 2010 22:21:15 +0000 (22:21 +0000)
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sat, 6 Nov 2010 22:21:15 +0000 (22:21 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@7251 36083f99-b078-4883-b0ff-0f9b5a30f544

engine/classes/ElggDiskFilestore.php

index 780598a87ea5de424321851e76ef68a8ba7e1853..c7ca9fd055f5ce09315c3bf234537466ad871780 100644 (file)
@@ -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;
                }