*/
protected function renderTaskProgressBar($progress) {
$progressText .= $GLOBALS['LANG']->getLL('status.progress')
- . ': ' . $progress . '%';
+ . ': ' . $progress . '%';
$progressBar = '<div class="progress"> <div class="bar" style="width: '
- . round($progress)
+ . $progress
. '%;">'
. $progressText
. '</div> </div>';
// The task object is valid
$name = htmlspecialchars($registeredClasses[$schedulerRecord['classname']]['title']. ' (' . $registeredClasses[$schedulerRecord['classname']]['extension'] . ')');
+ $name .= '<br /> ';
$additionalInformation = $task->getAdditionalInformation();
if ($task instanceof tx_scheduler_ProgressProvider) {
}
if (!empty($additionalInformation)) {
- $name .= '<br />[' . htmlspecialchars($additionalInformation) . ']';
+ $name .= '[' . htmlspecialchars($additionalInformation) . ']';
}
// Check if task currently has a running execution
return $result;
}
}
-?>
\ No newline at end of file
+?>