From be7ec69a90c10fb088813d6997b9f1ade17420c6 Mon Sep 17 00:00:00 2001 From: Platonides Date: Tue, 2 Apr 2013 22:58:01 +0200 Subject: [PATCH] Use canonical class name. Change-Id: I7dc9980d334bc5ad6421135d713d890a8588281c --- includes/filebackend/FileBackendStore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/filebackend/FileBackendStore.php b/includes/filebackend/FileBackendStore.php index be0d502550..1356ebe8f0 100644 --- a/includes/filebackend/FileBackendStore.php +++ b/includes/filebackend/FileBackendStore.php @@ -277,7 +277,7 @@ abstract class FileBackendStore extends FileBackend { protected function doMoveInternal( array $params ) { unset( $params['async'] ); // two steps, won't work here :) $nsrc = FileBackend::normalizeStoragePath( $params['src'] ); - $ndst = Filebackend::normalizeStoragePath( $params['dst'] ); + $ndst = FileBackend::normalizeStoragePath( $params['dst'] ); // Copy source to dest $status = $this->copyInternal( $params ); if ( $nsrc !== $ndst && $status->isOK() ) { -- 2.20.1