mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-27 15:54:29 +02:00
2012-03-25 Junichi Satoh <junichi@rworks.jp>
* 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
This commit is contained in:
parent
39548da58a
commit
ba72fa3cbe
@ -1,3 +1,8 @@
|
|||||||
|
2012-03-25 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
|
* include/db/postgresql.sql: Removed unnecessary quotes for making
|
||||||
|
query in postgresql_db_get_all_rows_filter().
|
||||||
|
|
||||||
2012-03-25 Junichi Satoh <junichi@rworks.jp>
|
2012-03-25 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
* extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql: Added a missing
|
* extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql: Added a missing
|
||||||
|
@ -712,7 +712,7 @@ function postgresql_db_get_all_rows_filter ($table, $filter = array(), $fields =
|
|||||||
$fields = '*';
|
$fields = '*';
|
||||||
}
|
}
|
||||||
elseif (is_array($fields)) {
|
elseif (is_array($fields)) {
|
||||||
$fields = '"' . implode('" , "', $fields) . '"';
|
$fields = implode(',', $fields);
|
||||||
}
|
}
|
||||||
elseif (!is_string($fields)) {
|
elseif (!is_string($fields)) {
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user