Index: trunk/phase3/includes/filerepo/LocalRepo.php |
— | — | @@ -14,12 +14,12 @@ |
15 | 15 | * @ingroup FileRepo |
16 | 16 | */ |
17 | 17 | class LocalRepo extends FileRepo { |
18 | | - var $fileFactory = array( 'LocalFile', 'newFromTitle' ); |
19 | | - var $fileFactoryKey = array( 'LocalFile', 'newFromKey' ); |
20 | | - var $oldFileFactory = array( 'OldLocalFile', 'newFromTitle' ); |
21 | | - var $oldFileFactoryKey = array( 'OldLocalFile', 'newFromKey' ); |
22 | | - var $fileFromRowFactory = array( 'LocalFile', 'newFromRow' ); |
23 | | - var $oldFileFromRowFactory = array( 'OldLocalFile', 'newFromRow' ); |
| 18 | + var $fileFactory = array( 'LocalFile' , 'newFromTitle' ); |
| 19 | + var $fileFactoryKey = array( 'LocalFile' , 'newFromKey' ); |
| 20 | + var $fileFromRowFactory = array( 'LocalFile' , 'newFromRow' ); |
| 21 | + var $oldFileFactory = array( 'OldLocalFile', 'newFromTitle' ); |
| 22 | + var $oldFileFactoryKey = array( 'OldLocalFile', 'newFromKey' ); |
| 23 | + var $oldFileFromRowFactory = array( 'OldLocalFile', 'newFromRow' ); |
24 | 24 | |
25 | 25 | /** |
26 | 26 | * @throws MWException |