From 9c7d392c5677766a1ba8b96c0b379d2ef3c2fc7f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 19 Jun 2007 15:11:20 +0000 Subject: [PATCH] Fix regression introduced in r23023; use the right function name when calling to load file properties :) --- includes/filerepo/LocalFile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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_' ) { -- 2.20.1