diff options
author | nikrou <nikrou@piwigo.org> | 2010-06-22 21:18:42 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-06-22 21:18:42 +0000 |
commit | bedacf7b0841489765286f5c61cb6a25c798e8a7 (patch) | |
tree | d47d20dadd4b829640603d3a4cc25821466c5b75 /include/dblayer/functions_pdo-sqlite.inc.php | |
parent | 5a677f1151ec726bcc147eee3e0743ca3153125e (diff) |
Bug 1737 fixed : Concatenation error with POstgreSQL
Simplify same function for SQLite
git-svn-id: http://piwigo.org/svn/trunk@6580 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/dblayer/functions_pdo-sqlite.inc.php')
-rw-r--r-- | include/dblayer/functions_pdo-sqlite.inc.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/dblayer/functions_pdo-sqlite.inc.php b/include/dblayer/functions_pdo-sqlite.inc.php index 2f1727e75..ea47564f0 100644 --- a/include/dblayer/functions_pdo-sqlite.inc.php +++ b/include/dblayer/functions_pdo-sqlite.inc.php @@ -413,9 +413,7 @@ function pwg_db_concat($array) function pwg_db_concat_ws($array, $separator) { - $glue = sprintf(' || \'%s\' || ', $separator); - - return implode($array, $glue); + return implode($array, ' || \''.$separator.'\' || '); } function pwg_db_cast_to_text($string) |