mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-11 17:44:56 +00:00
Merge branch 'seeddms-5.0.x' into develop
This commit is contained in:
commit
15bedc303e
|
@ -6,6 +6,7 @@
|
|||
- add timeline for single document and all documents in a given period
|
||||
of time
|
||||
- ensure dates in database are localtime, even if sqlite3 is used
|
||||
- fix document and page count in fulltext search
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
Changes in version 4.3.20
|
||||
|
|
|
@ -483,7 +483,7 @@ class SeedDMS_Core_DatabaseAccess {
|
|||
return "UNIX_TIMESTAMP()";
|
||||
break;
|
||||
case 'sqlite':
|
||||
return "strftime('%s', 'now', 'localtime')";
|
||||
return "strftime('%s', 'now')";
|
||||
break;
|
||||
}
|
||||
return '';
|
||||
|
|
Loading…
Reference in New Issue
Block a user