From: Nicolas Boisselier Date: Mon, 18 Apr 2016 09:43:19 +0000 (+0200) Subject: dump X-Git-Url: https://git.nbdom.net/?a=commitdiff_plain;h=5f41a9f4fa94b7906ca896ab9635895c6d33a1bc;p=nb.git dump --- diff --git a/lib/php/db.php b/lib/php/db.php index 47affa05..8a47b3f1 100644 --- a/lib/php/db.php +++ b/lib/php/db.php @@ -583,9 +583,9 @@ EOF; # Tables param filter $tables = $this->tables(); - if (self::p('table')) { + if ($table=self::p('table')) { $new = array(); - foreach (explode(',',self::p('table')) as $t) { + foreach (explode(',',$table) as $t) { $new[$t] = $tables[$t]; } $tables = $new;