Index: typo3/sysext/scheduler/res/tx_scheduler_be.css =================================================================== --- typo3/sysext/scheduler/res/tx_scheduler_be.css (revision 9898) +++ typo3/sysext/scheduler/res/tx_scheduler_be.css (working copy) @@ -25,11 +25,11 @@ font-weight: bold; } .tx_scheduler_mod1 label { - display: block; width: 200px; } .tx_scheduler_mod1 table.typo3-usersettings td { - padding: 2px; + padding-top: 2px; + padding-bottom: 2px; } .tx_scheduler_mod1 table.typo3-usersettings td.td-input { width: 400px; Index: typo3/sysext/scheduler/mod1/index.php =================================================================== --- typo3/sysext/scheduler/mod1/index.php (revision 9898) +++ typo3/sysext/scheduler/mod1/index.php (working copy) @@ -749,9 +749,8 @@ $defaultCell = array('', ''); // Disable checkbox - $cellContent = t3lib_BEfunc::cshItem($this->cshKey, 'task_disable', $this->backPath, '|', false, 'margin-bottom:0px;'); - $cellContent .= ''; - $table[$tr][] = $cellContent; + $label = ''; + $table[$tr][] = t3lib_BEfunc::wrapInHelp($this->cshKey, 'task_disable', $label); $table[$tr][] = ' '; @@ -763,9 +762,8 @@ $tr++; // Task class selector - $cellContent = t3lib_BEfunc::cshItem($this->cshKey, 'task_class', $this->backPath, '|', false, 'margin-bottom:0px;'); - $cellContent .= ''; - $table[$tr][] = $cellContent; + $label = ''; + $table[$tr][] = t3lib_BEfunc::wrapInHelp($this->cshKey, 'task_class', $label); // On editing, don't allow changing of the task class, unless it was not valid if ($this->submittedData['uid'] > 0 && !empty($taskInfo['class'])) { $cell = $registeredClasses[$taskInfo['class']]['title'] . ' (' . $registeredClasses[$taskInfo['class']]['extension'] . ')'; @@ -789,9 +787,8 @@ $tr++; // Task type selector - $cellContent = t3lib_BEfunc::cshItem($this->cshKey, 'task_type', $this->backPath, '|', false, 'margin-bottom:0px;'); - $cellContent .= ''; - $table[$tr][] = $cellContent; + $label = ''; + $table[$tr][] = t3lib_BEfunc::wrapInHelp($this->cshKey, 'task_type', $label); $table[$tr][] = '' . t3lib_iconWorks::getSpriteIcon( 'actions-edit-pick-date', @@ -826,9 +822,8 @@ // End date/time field // NOTE: datetime fields need a special id naming scheme - $cellContent = t3lib_BEfunc::cshItem($this->cshKey, 'task_end', $this->backPath, '|', false, 'margin-bottom:0px;'); - $cellContent .= ''; - $table[$tr][] = $cellContent; + $label = ''; + $table[$tr][] = t3lib_BEfunc::wrapInHelp($this->cshKey, 'task_end', $label); $table[$tr][] = '' . t3lib_iconWorks::getSpriteIcon( 'actions-edit-pick-date', @@ -845,9 +840,8 @@ $tr++; // Frequency input field - $cellContent = t3lib_BEfunc::cshItem($this->cshKey, 'task_frequency', $this->backPath, '|', false, 'margin-bottom:0px;'); - $cellContent .= ''; - $table[$tr][] = $cellContent; + $label = ''; + $table[$tr][] = t3lib_BEfunc::wrapInHelp($this->cshKey, 'task_frequency', $label); $cell = ''; $table[$tr][] = $cell; $tableLayout[$tr] = array ( @@ -858,9 +852,8 @@ $tr++; // Multiple execution selector - $cellContent = t3lib_BEfunc::cshItem($this->cshKey, 'task_multiple', $this->backPath, '|', false, 'margin-bottom:0px;'); - $cellContent .= ''; - $table[$tr][] = $cellContent; + $label = ''; + $table[$tr][] = t3lib_BEfunc::wrapInHelp($this->cshKey, 'task_multiple', $label); $table[$tr][] = ' '; @@ -882,9 +875,8 @@ // Add each field to the display, if there are indeed any if (isset($fields) && is_array($fields)) { foreach ($fields as $fieldID => $fieldInfo) { - $cellContent = t3lib_BEfunc::cshItem($fieldInfo['cshKey'], $fieldInfo['cshLabel'], $this->backPath, '|', false, 'margin-bottom:0px;'); - $cellContent .= ''; - $table[$tr][] = $cellContent; + $label = ''; + $table[$tr][] = t3lib_BEfunc::wrapInHelp($fieldInfo['cshKey'], $fieldInfo['cshLabel'], $label); $table[$tr][] = $fieldInfo['code']; $tableLayout[$tr] = array ( 'tr' => array('', ''),