From: Platonides Date: Tue, 2 Apr 2013 20:58:01 +0000 (+0200) Subject: Use canonical class name. X-Git-Tag: 1.31.0-rc.0~20129^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/%7B%7B%20url_for%28%27admin_users%27%29%20%7D%7D?a=commitdiff_plain;h=be7ec69a90c10fb088813d6997b9f1ade17420c6;p=lhc%2Fweb%2Fwiklou.git Use canonical class name. Change-Id: I7dc9980d334bc5ad6421135d713d890a8588281c --- 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() ) {