From 8d4aa70e90eb5e13a26265c2ed9b142a1a8f2073 Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Wed, 20 Nov 2024 21:29:54 +0100 Subject: [PATCH] www/dbq/dbq.php --- www/dbq/dbq.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/dbq/dbq.php b/www/dbq/dbq.php index 0c1966b6..5fe01754 100644 --- a/www/dbq/dbq.php +++ b/www/dbq/dbq.php @@ -1142,10 +1142,10 @@ EOF; } public function run_root() { + $action = $this->params['db']; if (!$action and self::PARAM_DB_DEFAULT) $action = self::PARAM_DB_DEFAULT; - #$this->params = [ 'action' => $action ]; - #bye($this->params); + $arg = join('/',[$this->params['table'],$this->params['action'],$this->params['args']]); $arg = []; foreach (['table','action','args'] as $k) { if (!empty($this->params[$k])) $arg[] = $this->params[$k]; } -- 2.47.3