diff options
Diffstat (limited to '')
-rw-r--r-- | include/dblayer/functions_sqlite.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dblayer/functions_sqlite.inc.php b/include/dblayer/functions_sqlite.inc.php index b3b9a2c1d..5f7d14d9e 100644 --- a/include/dblayer/functions_sqlite.inc.php +++ b/include/dblayer/functions_sqlite.inc.php @@ -55,7 +55,7 @@ function pwg_db_connect($host, $user, $password, $database) } $link->createFunction('now', 'pwg_now', 0); - $link->createFunction('unix_timestamp', 'pwg_unix_timestamp', 0); + $link->createFunction('unix_timestamp', 'pwg_unix_timestamp', 1); $link->createFunction('md5', 'md5', 1); $link->createFunction('if', 'pwg_if', 3); @@ -694,7 +694,7 @@ function pwg_now() function pwg_unix_timestamp() { - return time(); + return strtotime($strDate); } function pwg_if($expression, $value1, $value2) |