diff options
Diffstat (limited to 'include/dba/dba_pdo.php')
-rwxr-xr-x | include/dba/dba_pdo.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dba/dba_pdo.php b/include/dba/dba_pdo.php index 0ae69fe27..49f741601 100755 --- a/include/dba/dba_pdo.php +++ b/include/dba/dba_pdo.php @@ -141,7 +141,7 @@ class dba_pdo extends dba_driver { function str_to_date($str) { if($this->driver_dbtype === 'pgsql') { - return "TO_TIMESTAMP($str, 'YYYY-MM-DD HH:MI:SS')"; + return "TO_TIMESTAMP($str, 'YYYY-MM-DD HH24:MI:SS')"; } else { return "STR_TO_DATE($str, '%Y-%m-%d %H:%i:%s')"; |