From: Roan Kattouw Date: Thu, 16 Apr 2009 20:47:47 +0000 (+0000) Subject: Followup to r49572: forgot to commit LocalRepo.php X-Git-Tag: 1.31.0-rc.0~42119 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=be4ad6bc2d06d1691638880393efcd6d6a6e8b65;p=lhc%2Fweb%2Fwiklou.git Followup to r49572: forgot to commit LocalRepo.php --- diff --git a/includes/filerepo/LocalRepo.php b/includes/filerepo/LocalRepo.php index 1ec1b9a614..4014699fb8 100644 --- a/includes/filerepo/LocalRepo.php +++ b/includes/filerepo/LocalRepo.php @@ -10,10 +10,6 @@ class LocalRepo extends FSRepo { var $fileFromRowFactory = array( 'LocalFile', 'newFromRow' ); var $oldFileFromRowFactory = array( 'OldLocalFile', 'newFromRow' ); - function getMemcKey( $key ) { - return wfWikiID( $this->getSlaveDB() ) . ":{$key}"; - } - function newFileFromRow( $row ) { if ( isset( $row->img_name ) ) { return call_user_func( $this->fileFromRowFactory, $row, $this );