mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-29 16:55:05 +02:00
Fixed an error retrieving data with oracle
This commit is contained in:
parent
6e3b32d60d
commit
05f27a4bdc
@ -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",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user