From 5f41a9f4fa94b7906ca896ab9635895c6d33a1bc Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Mon, 18 Apr 2016 11:43:19 +0200 Subject: [PATCH] dump --- lib/php/db.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.47.3