DumpUploads: output local path instead of mwstore path
authorSouthparkfan <southparkfan223@hotmail.com>
Thu, 4 Feb 2016 16:58:45 +0000 (17:58 +0100)
committerSouthparkfan <southparkfan223@hotmail.com>
Thu, 4 Feb 2016 16:58:45 +0000 (17:58 +0100)
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

index 64884d5..e79afba 100644 (file)
@@ -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 {