Update status.php
authorPatrick McGuire <insidenothing@gmail.com>
Fri, 24 Jul 2020 15:43:03 +0000 (11:43 -0400)
committerGitHub <noreply@github.com>
Fri, 24 Jul 2020 15:43:03 +0000 (11:43 -0400)
admin/status.php

index af7d7e1..9a2d1b9 100644 (file)
@@ -18,11 +18,9 @@ function secondsToDHMS($seconds) {
     $left = $expected - $row_cnt;
     $minutes = round($left/$per_minute);
     $human = secondsToDHMS($minutes*60);
-    echo '<h1>'.date('r').'</h1><h1>'.number_format($row_cnt).' out of '.number_format($expected).' '.$p.'% done</h1>
-    <h3>$per_minute Per Minute</h3>
-<h3>$left row Left</h3>
-<h3>$human Left</h3>
-<title>'.$p.'% loaded</title>';
+    echo '<h1>'.date('r').'</h1><h1>'.number_format($row_cnt).' out of '.number_format($expected).' '.$p.'% done</h1>';
+    echo "<h3>$per_minute Per Minute</h3><h3>$left Rows Left</h3><h3>$human Left</h3>";
+    echo '<title>'.$p.'% loaded</title>';
   } 
 
 include_once('footer.php');