2010-03-03 Miguel de Dios <miguel.dedios@artica.es>
* operation/agentes/gis_view.php: fix "Call-time pass-by-reference" for function "print_table". git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2453 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
6022740c10
commit
8d72e7dab9
|
@ -1,3 +1,8 @@
|
|||
2010-03-03 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* operation/agentes/gis_view.php: fix "Call-time pass-by-reference" for
|
||||
function "print_table".
|
||||
|
||||
2010-03-02 Sancho Leren <slerena@artica.es>
|
||||
|
||||
* include/functions_ui.php: Fixes default icon for operation
|
||||
|
|
|
@ -101,7 +101,7 @@ else {
|
|||
$table->class = 'position_data_table';
|
||||
$table->id = $agent_name.'_position_data_table';
|
||||
$table->title = $agent_name." ". __("positional data");
|
||||
print_table(&$table); unset($table);
|
||||
print_table($table); unset($table);
|
||||
|
||||
pagination ($countData, false) ;
|
||||
echo "<h3>" . __('Total') . ' ' . $countData . ' ' . __('Data') . "</h3>";
|
||||
|
|
Loading…
Reference in New Issue