Index: trunk/phase3/maintenance/dumpUploads.php |
— | — | @@ -104,7 +104,7 @@ |
105 | 105 | function outputItem( $name, $shared ) { |
106 | 106 | $file = wfFindFile( $name ); |
107 | 107 | if ( $file && $this->filterItem( $file, $shared ) ) { |
108 | | - $filename = $file->getFullPath(); |
| 108 | + $filename = $file->getPath(); |
109 | 109 | $rel = wfRelativePath( $filename, $this->mBasePath ); |
110 | 110 | $this->output( "$rel\n" ); |
111 | 111 | } else { |
Index: trunk/phase3/includes/filerepo/File.php |
— | — | @@ -240,8 +240,11 @@ |
241 | 241 | |
242 | 242 | /** |
243 | 243 | * Alias for getPath() |
| 244 | + * |
| 245 | + * @deprecated Use getPath(). |
244 | 246 | */ |
245 | 247 | public function getFullPath() { |
| 248 | + wfDeprecated( __METHOD__ ); |
246 | 249 | return $this->getPath(); |
247 | 250 | } |
248 | 251 | |