mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-13 13:11:31 +00:00
Merge branch 'seeddms-4.3.x' into seeddms-5.0.x
This commit is contained in:
commit
1d626fc7e5
|
@ -6,6 +6,7 @@
|
||||||
- add timeline for single document and all documents in a given period
|
- add timeline for single document and all documents in a given period
|
||||||
of time
|
of time
|
||||||
- ensure dates in database are localtime, even if sqlite3 is used
|
- 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
|
Changes in version 4.3.20
|
||||||
|
|
|
@ -483,7 +483,7 @@ class SeedDMS_Core_DatabaseAccess {
|
||||||
return "UNIX_TIMESTAMP()";
|
return "UNIX_TIMESTAMP()";
|
||||||
break;
|
break;
|
||||||
case 'sqlite':
|
case 'sqlite':
|
||||||
return "strftime('%s', 'now', 'localtime')";
|
return "strftime('%s', 'now')";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return '';
|
return '';
|
||||||
|
|
Loading…
Reference in New Issue
Block a user