From: Kevin Israel Date: Mon, 25 Jul 2016 02:55:20 +0000 (-0400) Subject: syncFileBackend.php: ellapsed => elapsed X-Git-Tag: 1.31.0-rc.0~6261^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/?a=commitdiff_plain;h=8ba2ed2cc6cea9974814c0fc9d5247d1f0c9b366;p=lhc%2Fweb%2Fwiklou.git syncFileBackend.php: ellapsed => elapsed As in c099155a17d26f03 for copyFileBackend.php. Change-Id: Ifbc0673ee092f782de654eeca636d3b1ec061ae7 --- 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" ); }