diff --git a/CHANGELOG b/CHANGELOG index 0af4b063b..4265d446a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/SeedDMS_Core/Core/inc.DBAccessPDO.php b/SeedDMS_Core/Core/inc.DBAccessPDO.php index 25c8dc827..deccf02a7 100644 --- a/SeedDMS_Core/Core/inc.DBAccessPDO.php +++ b/SeedDMS_Core/Core/inc.DBAccessPDO.php @@ -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 '';