From ba72fa3cbecc2f41798569cd38c8595a68d64e3c Mon Sep 17 00:00:00 2001 From: jsatoh Date: Sun, 25 Mar 2012 08:04:36 +0000 Subject: [PATCH] 2012-03-25 Junichi Satoh * include/db/postgresql.sql: Removed unnecessary quotes for making query in postgresql_db_get_all_rows_filter(). git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5832 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 9174412c88..e1648a5292 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2012-03-25 Junichi Satoh + + * include/db/postgresql.sql: Removed unnecessary quotes for making + query in postgresql_db_get_all_rows_filter(). + 2012-03-25 Junichi Satoh * extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql: Added a missing diff --git a/pandora_console/include/db/postgresql.php b/pandora_console/include/db/postgresql.php index 0027aae38c..b68eb6b4ec 100644 --- a/pandora_console/include/db/postgresql.php +++ b/pandora_console/include/db/postgresql.php @@ -712,7 +712,7 @@ function postgresql_db_get_all_rows_filter ($table, $filter = array(), $fields = $fields = '*'; } elseif (is_array($fields)) { - $fields = '"' . implode('" , "', $fields) . '"'; + $fields = implode(',', $fields); } elseif (!is_string($fields)) { return false;