From 3cddefe355cbdb00b2dc2ed5d6ace34ccd49edd6 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Wed, 2 Mar 2011 14:30:26 +0000 Subject: [PATCH] 2011-03-02 Miguel de Dios * include/db/postgresql.php: fixed in the function "postgresql_get_db_all_rows_in_table" unclose quotes. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4046 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/include/db/postgresql.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index edfa3fcbfe..eb0d07e0f8 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2011-03-02 Miguel de Dios + + * include/db/postgresql.php: fixed in the function + "postgresql_get_db_all_rows_in_table" unclose quotes. + 2011-03-02 Miguel de Dios * include/help/es/modu_group_list.php: erased the unused php file. I think diff --git a/pandora_console/include/db/postgresql.php b/pandora_console/include/db/postgresql.php index d97fae83eb..352f039bc0 100644 --- a/pandora_console/include/db/postgresql.php +++ b/pandora_console/include/db/postgresql.php @@ -268,7 +268,7 @@ function postgresql_process_sql($sql, $rettype = "affected_rows", $dbconnection */ function postgresql_get_db_all_rows_in_table($table, $order_field = "", $order = 'ASC') { if ($order_field != "") { - return get_db_all_rows_sql ('SELECT * FROM "'.$table.'" ORDER BY "'.$order_field . ' ' . $order); + return get_db_all_rows_sql ('SELECT * FROM "'.$table.'" ORDER BY "'.$order_field . '" ' . $order); } else { return get_db_all_rows_sql ('SELECT * FROM "'.$table.'"');