From 618e3d2a32abc13d490134dfa9d0e8435bbaee5f Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Wed, 22 May 2019 12:01:16 +0200 Subject: [PATCH] Fixed potentially undefined variable --- files/lib/system/exporter/VB5xExporter.class.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/files/lib/system/exporter/VB5xExporter.class.php b/files/lib/system/exporter/VB5xExporter.class.php index 720ce90..4a023a5 100644 --- a/files/lib/system/exporter/VB5xExporter.class.php +++ b/files/lib/system/exporter/VB5xExporter.class.php @@ -309,6 +309,9 @@ class VB5xExporter extends AbstractExporter { else if ($row['scheme'] == 'legacy') { $password = 'vb5:'.implode(':', explode(' ', $row['token'], 2)); } + else { + continue; + } $passwordUpdateStatement->execute([$password, $newUserID]); } -- 2.20.1