From: skodak Date: Sun, 21 Sep 2008 10:33:58 +0000 (+0000) Subject: MDL-16596 adding missing get_pathnamehash() method X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=6ed19c74641908bda98004afb08a6fa333ccdf45;p=moodle.git MDL-16596 adding missing get_pathnamehash() method --- diff --git a/lib/file/stored_file.php b/lib/file/stored_file.php index 1373210873..3ad8575151 100644 --- a/lib/file/stored_file.php +++ b/lib/file/stored_file.php @@ -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; + } }