Fixed an error retrieving data with oracle

This commit is contained in:
Alejandro Gallardo Escobar 2015-06-12 14:25:43 +01:00
parent 6e3b32d60d
commit 05f27a4bdc

View File

@ -195,7 +195,7 @@ else {
$table->data[$next_row][1] = '<b>' . __('Tags available') . '</b><br>'; $table->data[$next_row][1] = '<b>' . __('Tags available') . '</b><br>';
$table->data[$next_row][1] .= html_print_select_from_sql ( $table->data[$next_row][1] .= html_print_select_from_sql (
"SELECT name, name "SELECT name AS name1, name AS name2
FROM ttag FROM ttag
WHERE $tags_condition_not WHERE $tags_condition_not
ORDER BY name", 'id_tag_available[]', '', '','','', ORDER BY name", 'id_tag_available[]', '', '','','',
@ -205,7 +205,7 @@ $table->data[$next_row][2] .= '<br><br><br><br>' . html_print_image('images/darr
$table->data[$next_row][3] = '<b>' . __('Tags selected') . '</b><br>'; $table->data[$next_row][3] = '<b>' . __('Tags selected') . '</b><br>';
$table->data[$next_row][3] .= html_print_select_from_sql ( $table->data[$next_row][3] .= html_print_select_from_sql (
"SELECT name, name "SELECT name AS name1, name AS name2
FROM ttag FROM ttag
WHERE $tags_condition_in WHERE $tags_condition_in
ORDER BY name", ORDER BY name",