Bug fix: undefined variable when rip progress is 0%
This commit is contained in:
@@ -281,6 +281,7 @@ class RippingCluster_Job {
|
|||||||
$running_time = $current_status->mtime() - $current_status->ctime();
|
$running_time = $current_status->mtime() - $current_status->ctime();
|
||||||
$progress = $current_status->ripProgress();
|
$progress = $current_status->ripProgress();
|
||||||
|
|
||||||
|
$remaining_time = 0;
|
||||||
if ($progress > 0) {
|
if ($progress > 0) {
|
||||||
$remaining_time = round((100 - $progress) * ($running_time / $progress));
|
$remaining_time = round((100 - $progress) * ($running_time / $progress));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user