Merge branch 'seeddms-5.0.x' into develop

This commit is contained in:
Uwe Steinmann 2015-09-28 14:54:03 +02:00
commit 15bedc303e
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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 '';