+2009-11-13 Francois Suter <francois@typo3.org>
+
+ * Fixed bug #12550: Scheduler: Added some space between the sections of the "scheduled tasks"-screen
+
2009-11-12 Stanislas Rolland <typo3@sjbr.ca>
* Fixed bug #4670: htmlArea RTE: Problem when cutting pasting links within table cells or list items
2009-11-11 Francois Suter <francois@typo3.org>
- * Cleanup #12552: Scheduler: Code cleanup: Corrected inconsistent use of full stops in language labels
+ * Cleanup #12552: Scheduler: Corrected inconsistent use of full stops in language labels
2009-11-11 Steffen Kamper <info@sk-typo3.de>
// Display legend, if there's at least one registered task
// Also display information about the usage of server time
if ($numRows > 0) {
+ $content .= $this->doc->spacer(20);
$content .= '<h4>' . $GLOBALS['LANG']->getLL('status.legend') . '</h4>
<ul>
<li><img ' . t3lib_iconWorks::skinImg(t3lib_extMgm::extRelPath('scheduler'), 'res/gfx/status_failure.png') . ' alt="' . $GLOBALS['LANG']->getLL('status.failure') . '" /> ' . $GLOBALS['LANG']->getLL('status.legend.failure') . '</li>
<li><img ' . t3lib_iconWorks::skinImg(t3lib_extMgm::extRelPath('scheduler'), 'res/gfx/status_scheduled.png') . ' alt="' . $GLOBALS['LANG']->getLL('status.scheduled') . '" /> ' . $GLOBALS['LANG']->getLL('status.legend.scheduled') . '</li>
<li><img ' . t3lib_iconWorks::skinImg(t3lib_extMgm::extRelPath('scheduler'), 'res/gfx/status_disabled.png') . ' alt="' . $GLOBALS['LANG']->getLL('status.disabled') . '" /> ' . $GLOBALS['LANG']->getLL('status.legend.disabled') . '</li>
</ul>';
+ $content .= $this->doc->spacer(10);
$content .= $this->displayServerTime();
}