From fbd1d562e6dcf891dd220b124f16d969dbc9a3a4 Mon Sep 17 00:00:00 2001 From: Markus Birth Date: Mon, 25 Jun 2018 17:24:39 +0200 Subject: [PATCH] Bugfix. --- lib/TclUpdates/SQLiteWriter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/TclUpdates/SQLiteWriter.php b/lib/TclUpdates/SQLiteWriter.php index da8f617..751d354 100644 --- a/lib/TclUpdates/SQLiteWriter.php +++ b/lib/TclUpdates/SQLiteWriter.php @@ -39,7 +39,7 @@ class SQLiteWriter $result = $stmt->fetchAll(\PDO::FETCH_ASSOC); $pubFirst = '2099-12-31'; $pubLast = '1970-01-01'; - $note = array('en' => null, 'ja' => null, 'zh' => null); + $note = array('en' => null, 'ja' => null, 'ko' => null, 'zh' => null); if (count($result) > 0) { $pubFirst = $result[0]['published_first']; $pubLast = $result[0]['published_last'];