From 17299bab298555d1f9a8146cccaf915a73a0cee8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cornelius=20Wei=C3=9F?= Date: Tue, 26 Sep 2006 13:11:56 +0000 Subject: [PATCH] one of those lovely reference bugfixes... --- etemplate/inc/class.advancedsearch_widget.inc.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/etemplate/inc/class.advancedsearch_widget.inc.php b/etemplate/inc/class.advancedsearch_widget.inc.php index f5a4cc0cb5..7604d00505 100644 --- a/etemplate/inc/class.advancedsearch_widget.inc.php +++ b/etemplate/inc/class.advancedsearch_widget.inc.php @@ -149,9 +149,10 @@ 'search_method' => $extension_data['search_method'], 'colums_to_present' => $extension_data['colums_to_present'], 'template' => $result_rows_tpl, - )); - - $tpl->add_child($tpl, $action_buttons = $tpl->empty_cell('hbox','action_buttons')); + )); + + $action_buttons =& $tpl->empty_cell('hbox','action_buttons'); + $tpl->add_child($tpl, $action_buttons); foreach ($extension_data['actions'] as $action => $options) { $tpl->add_child($action_buttons, $result_button = $tpl->empty_cell($options['type'],'action['.$action.']',$options['options']));