fix not displayed actions found by Christophe Combelles

This commit is contained in:
Cornelius Weiß 2006-07-01 05:26:07 +00:00
parent 286a68d2ba
commit 63e898d428

View File

@ -130,7 +130,8 @@
}
if(!empty($extension_data['row_actions']))
{
$result_rows_tpl->add_child($grid,$row_actions = $result_rows_tpl->empty_cell('hbox','row_action'));
$row_actions =& $result_rows_tpl->empty_cell('hbox','row_action');
$result_rows_tpl->add_child($grid,$row_actions);
foreach($extension_data['row_actions'] as $action => $options)
{
$result_rows_tpl->add_child($row_actions, $row_action = $result_rows_tpl->empty_cell($options['type'],$action.'[$row_cont[id]]',$options['options']));