Use 24 hour format for last_run_time

This commit is contained in:
DariusIII
2017-08-01 15:46:35 +02:00
parent 813658f473
commit 2d33b968c2
+1 -1
View File
@@ -342,7 +342,7 @@ class Binaries
*/
public function logIndexerStart(): void
{
Settings::query()->where('setting', '=', 'last_run_time')->update(['value' => date('Y-m-d h:m:s')]);
Settings::query()->where('setting', '=', 'last_run_time')->update(['value' => date('Y-m-d H:m:s')]);
/*$this->_pdo->queryExec("UPDATE settings SET value = NOW() WHERE setting = 'last_run_time'");*/
}