]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-16596 adding missing get_pathnamehash() method
authorskodak <skodak>
Sun, 21 Sep 2008 10:33:58 +0000 (10:33 +0000)
committerskodak <skodak>
Sun, 21 Sep 2008 10:33:58 +0000 (10:33 +0000)
lib/file/stored_file.php

index 1373210873a445bd1ccdc85e7fec445dc5752d47..3ad8575151a42363a70bc5b8550754e54f890f32 100644 (file)
@@ -250,4 +250,8 @@ class stored_file {
     public function get_contenthash() {
         return $this->file_record->contenthash;
     }
+
+    public function get_pathnamehash() {
+        return $this->file_record->pathnamehash;
+    }
 }