From 272d090e07cc749bf8654ede81d3d608cc5dc370 Mon Sep 17 00:00:00 2001 From: Southparkfan Date: Thu, 4 Feb 2016 17:58:45 +0100 Subject: [PATCH] DumpUploads: output local path instead of mwstore path Since a while, getPath() returns the internal mwstore:// path instead of the real file path. This is not useful for sysadmins that want to backup their images using this script. Bug: T75157 Change-Id: I237d1a138a9d68d3aa4ea60971a2addb35ff5917 --- maintenance/dumpUploads.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/dumpUploads.php b/maintenance/dumpUploads.php index 64884d527b..e79afba376 100644 --- a/maintenance/dumpUploads.php +++ b/maintenance/dumpUploads.php @@ -111,7 +111,7 @@ By default, outputs relative paths against the parent directory of $wgUploadDire function outputItem( $name, $shared ) { $file = wfFindFile( $name ); if ( $file && $this->filterItem( $file, $shared ) ) { - $filename = $file->getPath(); + $filename = $file->getLocalRefPath(); $rel = wfRelativePath( $filename, $this->mBasePath ); $this->output( "$rel\n" ); } else { -- 2.20.1