Import: add missing semicolon

This commit is contained in:
Thomas Gelf 2015-12-15 11:08:04 +01:00
parent bc51c2e81c
commit d347a18ac6

View File

@ -376,7 +376,7 @@ class Import
$query = $db $query = $db
->select() ->select()
->from($table, 'checksum') ->from($table, 'checksum')
->where('LOWER(HEX(checksum)) IN (?)', $hexed) ->where('LOWER(HEX(checksum)) IN (?)', $hexed);
$existing = $db->fetchCol($query); $existing = $db->fetchCol($query);