Fixed return_array() only displaying the first line

This commit is contained in:
jengo 2001-10-17 02:01:41 +00:00
parent 593539a8be
commit 5706d356af

View File

@ -147,10 +147,10 @@
$this->template->set_var('row_date',$GLOBALS['phpgw']->common->show_date($value['datetime']));
$this->template->set_var('row_owner',$value['owner']);
$this->template->set_var('row_owner',$value['status']);
$this->template->set_var('row_status',$this->types[$value['status']]);
$this->template->set_var('row_new_value',$value['new_value']);
$this->template->fp('rows','row');
$this->template->fp('rows','row',True);
}
return $this->template->fp('out','list');
}