From df87a4641dcb7fc2a393dcdf8d4bf1c57ffac069 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 14 Jul 2016 13:19:53 +0800 Subject: [PATCH] UpdateDatabase.php --- UpdateDatabase.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/UpdateDatabase.php b/UpdateDatabase.php index b90fdc32..8e9af2ea 100644 --- a/UpdateDatabase.php +++ b/UpdateDatabase.php @@ -407,13 +407,18 @@ class Pman_Core_UpdateDatabase extends Pman echo "OK - {$line}\n"; flush(); continue; } + $continue =0; switch($matches[1]) { case 1050: // create tables triggers this.. - echo "IGNORE - {$line}\n"; flush(); - continue; + $continue = 1; + break; } + if ($continue) { + echo "IGNORE - {$line}\n"; flush(); + continue; + } // real errors... // 1051: // Unknown table -- normally drop = add iff exists.. -- 2.39.2