From 05f27a4bdc8e7325b0b6bab036aa716279efe8af Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Fri, 12 Jun 2015 14:25:43 +0100 Subject: [PATCH] Fixed an error retrieving data with oracle --- .../modules/manage_network_components_form_common.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/modules/manage_network_components_form_common.php b/pandora_console/godmode/modules/manage_network_components_form_common.php index e7e2767615..1fe2f1b36f 100644 --- a/pandora_console/godmode/modules/manage_network_components_form_common.php +++ b/pandora_console/godmode/modules/manage_network_components_form_common.php @@ -195,20 +195,20 @@ else { $table->data[$next_row][1] = '' . __('Tags available') . '
'; $table->data[$next_row][1] .= html_print_select_from_sql ( - "SELECT name, name + "SELECT name AS name1, name AS name2 FROM ttag WHERE $tags_condition_not - ORDER BY name", 'id_tag_available[]', '', '','','', + ORDER BY name", 'id_tag_available[]', '', '','','', true, true, false, false, 'width: 200px', '5'); $table->data[$next_row][2] = html_print_image('images/darrowright.png', true, array('id' => 'right', 'title' => __('Add tags to module'))); //html_print_input_image ('add', 'images/darrowright.png', 1, '', true, array ('title' => __('Add tags to module'))); $table->data[$next_row][2] .= '



' . html_print_image('images/darrowleft.png', true, array('id' => 'left', 'title' => __('Delete tags to module'))); //html_print_input_image ('add', 'images/darrowleft.png', 1, '', true, array ('title' => __('Delete tags to module'))); $table->data[$next_row][3] = '' . __('Tags selected') . '
'; $table->data[$next_row][3] .= html_print_select_from_sql ( - "SELECT name, name + "SELECT name AS name1, name AS name2 FROM ttag WHERE $tags_condition_in - ORDER BY name", + ORDER BY name", 'id_tag_selected[]', '', '','','', true, true, false, false, 'width: 200px', '5');