1
0
mirror of https://github.com/mbirth/tcl_update_db.git synced 2024-09-19 16:53:25 +01:00

Bugfix with missing seenDate in DB.

This commit is contained in:
Markus Birth 2018-02-16 23:56:47 +01:00
parent 423631cc7a
commit 3d02aaea3a
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A

View File

@ -41,7 +41,7 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$g = GotuObject::fromXmlParser($xp); $g = GotuObject::fromXmlParser($xp);
if ($g->tv) { if ($g->tv) {
$sqlw = new SQLiteWriter(); $sqlw = new SQLiteWriter();
$result = $sqlw->addGotu($g, $file_date); $result = $sqlw->addGotu($g);
if ($result !== false) { if ($result !== false) {
$config = parse_ini_file(__DIR__ . '/config.ini'); $config = parse_ini_file(__DIR__ . '/config.ini');
$type = 'FULL'; $type = 'FULL';