From fd1aed871eceadaca97ed64c17002f58486b3283 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Wed, 3 Mar 2010 09:22:44 +0000 Subject: [PATCH] 2010-03-03 Miguel de Dios * 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 --- pandora_console/ChangeLog | 5 +++++ pandora_console/operation/agentes/gis_view.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 15318bc953..e3fa2e3ed0 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-03-03 Miguel de Dios + + * operation/agentes/gis_view.php: fix "Call-time pass-by-reference" for + function "print_table". + 2010-03-02 Sancho Leren * include/functions_ui.php: Fixes default icon for operation diff --git a/pandora_console/operation/agentes/gis_view.php b/pandora_console/operation/agentes/gis_view.php index e32bfff8e6..3ea7460140 100644 --- a/pandora_console/operation/agentes/gis_view.php +++ b/pandora_console/operation/agentes/gis_view.php @@ -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 "

" . __('Total') . ' ' . $countData . ' ' . __('Data') . "

";