Bug #21624 ยป selectdescelect-cursor.patch
t3lib/class.t3lib_install.php (Arbeitskopie) | ||
---|---|---|
<input type="checkbox" id="' . $tableId . '-checkbox"' . ($checked ? ' checked="checked"' : '') . '
|
||
onclick="$(\'' . $tableId . '\').select(\'input[type=checkbox]\').invoke(\'setValue\', $(this).checked);" />
|
||
</td>
|
||
<td nowrap="nowrap"><label for="' . $tableId . '-checkbox"><strong>select/deselect all</strong></label></td>
|
||
<td nowrap="nowrap"><label for="' . $tableId . '-checkbox" style="cursor:pointer"><strong>select/deselect all</strong></label></td>
|
||
</tr>';
|
||
}
|
||
foreach($arr as $key => $string) {
|
||
... | ... | |
$out[]='
|
||
<tr>
|
||
<td valign="top"></td>
|
||
<td nowrap="nowrap" style="color : #666666;">'.nl2br((!$cVfullMsg?"Current value: ":"").'<em>'.$currentValue[$key].'</em>').'</td>
|
||
<td nowrap="nowrap" style="color:#666666;">'.nl2br((!$cVfullMsg?"Current value: ":"").'<em>'.$currentValue[$key].'</em>').'</td>
|
||
</tr>';
|
||
}
|
||
}
|
||
... | ... | |
$out[] = '
|
||
<tr>
|
||
<td valign="top"></td>
|
||
<td style="color : #666666;"><em>' . implode('<br />',$warnings) . '</em></td>
|
||
<td style="color:#666666;"><em>' . implode('<br />',$warnings) . '</em></td>
|
||
</tr>';
|
||
}
|
||