From: Alan Knowles Date: Thu, 14 Jul 2016 05:14:05 +0000 (+0800) Subject: UpdateDatabase.php X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=2ff24ac16816d97ec4459178bd91ce2acff21f85 UpdateDatabase.php --- diff --git a/UpdateDatabase.php b/UpdateDatabase.php index 922be248..3472dd12 100644 --- a/UpdateDatabase.php +++ b/UpdateDatabase.php @@ -402,12 +402,14 @@ class Pman_Core_UpdateDatabase extends Pman { // send the current file part to the browser $line = trim(fgets($fp, 1024)); - echo '->>> ' . $line . " <<<---\n"; - echo "--"; + $matches = array(); + if (!preg_match('/^ERROR\s+([0-9]+)/', $line, $matches)) { + echo "OK - {$line}\n"; flush(); + continue; + } + print_r($matches);exit; - // flush the content to the browser - flush(); }