From: Brion Vibber Date: Tue, 19 Jun 2007 15:11:20 +0000 (+0000) Subject: Fix regression introduced in r23023; use the right function name when calling to... X-Git-Tag: 1.31.0-rc.0~52498 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=9c7d392c5677766a1ba8b96c0b379d2ef3c2fc7f;p=lhc%2Fweb%2Fwiklou.git Fix regression introduced in r23023; use the right function name when calling to load file properties :) --- diff --git a/includes/filerepo/LocalFile.php b/includes/filerepo/LocalFile.php index 2e1f8a8b66..d82031763c 100644 --- a/includes/filerepo/LocalFile.php +++ b/includes/filerepo/LocalFile.php @@ -150,7 +150,7 @@ class LocalFile extends File * Load metadata from the file itself */ function loadFromFile() { - $this->setProps( self::getInfoFromPath( $this->getPath() ) ); + $this->setProps( self::getPropsFromPath( $this->getPath() ) ); } function getCacheFields( $prefix = 'img_' ) {