diff options
author | nikrou <nikrou@piwigo.org> | 2010-05-24 20:12:35 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-05-24 20:12:35 +0000 |
commit | ee35b8a0808da6e3edd86c1f82a40eaaefaf6b85 (patch) | |
tree | a638b5151f986e09b315c1649513fdd946af4d0b /include/dblayer/functions_pgsql.inc.php | |
parent | 555364c8a934a729ee2361c41033b836c63aef3e (diff) |
Fix bug 1695 : incorrect boolean to string conversion for SQLite and PostgreSQL database engines
git-svn-id: http://piwigo.org/svn/trunk@6339 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/dblayer/functions_pgsql.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/dblayer/functions_pgsql.inc.php b/include/dblayer/functions_pgsql.inc.php index 5e05fb16a..38fcc2ed9 100644 --- a/include/dblayer/functions_pgsql.inc.php +++ b/include/dblayer/functions_pgsql.inc.php @@ -510,13 +510,13 @@ function get_boolean( $string ) */ function boolean_to_string($var) { - if (!empty($var) && ($var == 't')) + if (is_bool($var)) { - return 'true'; + return $var ? 'true' : 'false'; } else { - return 'false'; + return $var; } } |