From 8ba2ed2cc6cea9974814c0fc9d5247d1f0c9b366 Mon Sep 17 00:00:00 2001 From: Kevin Israel Date: Sun, 24 Jul 2016 22:55:20 -0400 Subject: [PATCH] syncFileBackend.php: ellapsed => elapsed As in c099155a17d26f03 for copyFileBackend.php. Change-Id: Ifbc0673ee092f782de654eeca636d3b1ec061ae7 --- maintenance/syncFileBackend.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maintenance/syncFileBackend.php b/maintenance/syncFileBackend.php index 4a74322228..82149a6ddd 100644 --- a/maintenance/syncFileBackend.php +++ b/maintenance/syncFileBackend.php @@ -268,9 +268,9 @@ class SyncFileBackend extends Maintenance { sleep( 10 ); // wait and retry copy again $status = $dst->doQuickOperations( $ops, [ 'bypassReadOnly' => 1 ] ); } - $ellapsed_ms = floor( ( microtime( true ) - $t_start ) * 1000 ); + $elapsed_ms = floor( ( microtime( true ) - $t_start ) * 1000 ); if ( $status->isOK() && $this->getOption( 'verbose' ) ) { - $this->output( "Synchronized these file(s) [{$ellapsed_ms}ms]:\n" . + $this->output( "Synchronized these file(s) [{$elapsed_ms}ms]:\n" . implode( "\n", $dPaths ) . "\n" ); } -- 2.20.1