From 3d02aaea3a77e6b107c4d6f6c9db417f4645de71 Mon Sep 17 00:00:00 2001 From: Markus Birth Date: Fri, 16 Feb 2018 23:56:47 +0100 Subject: [PATCH] Bugfix with missing seenDate in DB. --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 9d0bcff..92bb0e3 100644 --- a/index.php +++ b/index.php @@ -41,7 +41,7 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST') { $g = GotuObject::fromXmlParser($xp); if ($g->tv) { $sqlw = new SQLiteWriter(); - $result = $sqlw->addGotu($g, $file_date); + $result = $sqlw->addGotu($g); if ($result !== false) { $config = parse_ini_file(__DIR__ . '/config.ini'); $type = 'FULL';