mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-06 08:43:31 +02:00
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
This commit is contained in:
@@ -46,7 +46,6 @@ function pwg_db_connect($host, $user, $password, $database)
|
||||
}
|
||||
|
||||
$link->sqliteCreateFunction('now', 'pwg_now', 0);
|
||||
$link->sqliteCreateFunction('hour', 'pwg_hour', 1);
|
||||
$link->sqliteCreateFunction('unix_timestamp', 'pwg_unix_timestamp', 0);
|
||||
$link->sqliteCreateFunction('md5', 'md5', 1);
|
||||
$link->sqliteCreateFunction('if', 'pwg_if', 3);
|
||||
@@ -502,6 +501,12 @@ function pwg_db_get_recent_period($period, $date='CURRENT_DATE')
|
||||
return $d;
|
||||
}
|
||||
|
||||
function pwg_db_get_hour($date)
|
||||
{
|
||||
return 'strftime(\'%H\', '.$date.')';
|
||||
}
|
||||
|
||||
|
||||
function pwg_db_get_date_YYYYMM($date)
|
||||
{
|
||||
return 'strftime(\'%Y%m\','.$date.')';
|
||||
@@ -571,11 +576,6 @@ function pwg_now()
|
||||
return date('Y-m-d H:i:s');
|
||||
}
|
||||
|
||||
function pwg_hour($datetime)
|
||||
{
|
||||
return strftime('%H', $datetime);
|
||||
}
|
||||
|
||||
function pwg_unix_timestamp()
|
||||
{
|
||||
return time();
|
||||
|
||||
Reference in New Issue
Block a user