Bug #15272
closedunused code in t3lib_tce_forms
0%
Description
Line 2115 to 2122 is unused, since $tRows is completle newly steted
$tRows[]='<tr class="bgColor2">
<td nowrap="nowrap" valign="top">'.
'<input name="_DELETE_FLEX_FORM'.$PA['itemFormElName'].$formPrefix.'" type="checkbox" value="1" /><img src="'.$this->backPath.'gfx/garbage.gif" border="0" alt="" />'.
'<input name="_MOVEUP_FLEX_FORM'.$PA['itemFormElName'].$formPrefix.'" type="checkbox" value="1" /><img src="'.$this->backPath.'gfx/button_up.gif" border="0" alt="" />'.
'<input name="_MOVEDOWN_FLEX_FORM'.$PA['itemFormElName'].$formPrefix.'" type="checkbox" value="1" /><img src="'.$this->backPath.'gfx/button_down.gif" border="0" alt="" />'.
$rowCells['title'].'</td>
<td>'.$rowCells['formEl'].'</td>
</tr>';
$tRows = $this->getSingleField_typeFlex_draw(
$value['el'],
$editData[$key]['el'],
$cmdData[$key]['el'],
$table,
$field,
$row,
$PA,
$formPrefix.'['.$key.'][el]',
$level+1,
$tRows
);
(issue imported from #M2022)
Updated by Sebastian Kurfuerst almost 19 years ago
Nope, it is not unused. The last parameter of getSingleField_typeFlex_draw is $tRows.
If you agree I will close the bug :-)
Greets, Sebastian
Updated by Sebastian Kurfuerst almost 19 years ago
resolving the issue. no change required.