diff options
author | nikrou <nikrou@piwigo.org> | 2010-06-22 21:01:05 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-06-22 21:01:05 +0000 |
commit | 5a677f1151ec726bcc147eee3e0743ca3153125e (patch) | |
tree | ad121f3eb3bcb70c56d5ca6d7a1aaa407187d0a1 /include/dblayer/functions_mysql.inc.php | |
parent | f4d4a3dbcf0ef0e56ff120410ac3e8dee03bfa35 (diff) |
Bug 1738 fixed : hour function doesn't exists for database other than mysql.
git-svn-id: http://piwigo.org/svn/trunk@6578 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/dblayer/functions_mysql.inc.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/dblayer/functions_mysql.inc.php b/include/dblayer/functions_mysql.inc.php index 3160e1902..5e0c4dcd4 100644 --- a/include/dblayer/functions_mysql.inc.php +++ b/include/dblayer/functions_mysql.inc.php @@ -580,6 +580,11 @@ SELECT '.pwg_db_get_recent_period_expression($period); return $d; } +function pwg_db_get_hour($date) +{ + return 'hour('.$date.')'; +} + function pwg_db_get_date_YYYYMM($date) { return 'DATE_FORMAT('.$date.', \'%Y%m\')'; |