From 2d33b968c230fb6ec46c5cc9bd1f4f6b92999307 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Tue, 1 Aug 2017 15:46:35 +0200 Subject: [PATCH] Use 24 hour format for last_run_time --- nntmux/Binaries.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nntmux/Binaries.php b/nntmux/Binaries.php index 1115dad43..6ae2c9cfe 100755 --- a/nntmux/Binaries.php +++ b/nntmux/Binaries.php @@ -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'");*/ }