Ignore:
Timestamp:
Jun 4, 2010, 9:36:56 PM (14 years ago)
Author:
nikrou
Message:

Fix bug 1717 : SQLite: access failure on Admin > Tools > History
hour function doesn't exists

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/dblayer/functions_sqlite.inc.php

    r6339 r6463  
    5656
    5757  $link->createFunction('now', 'pwg_now', 0);
     58  $link->createFunction('hour', 'pwg_hour', 1);
    5859  $link->createFunction('unix_timestamp', 'pwg_unix_timestamp', 0);
    5960  $link->createFunction('md5', 'md5', 1);
     
    583584}
    584585
     586function pwg_hour($datetime)
     587{
     588  return strftime('%H', $datetime);
     589}
     590
    585591function pwg_unix_timestamp()
    586592{
Note: See TracChangeset for help on using the changeset viewer.