From f2e8b7258b462bada7ad4570f48f0758219fa2a2 Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Wed, 20 Nov 2024 21:38:04 +0100 Subject: [PATCH] www/dbq/dbq.php --- www/dbq/dbq.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/dbq/dbq.php b/www/dbq/dbq.php index 5fe01754..55698582 100644 --- a/www/dbq/dbq.php +++ b/www/dbq/dbq.php @@ -1199,10 +1199,10 @@ EOF; }); } elseif ($action == 'logout') { $this->page($this,'logout'); - } elseif ($action == 'ssha_password') { $this->page($this,'ssha_password'); - } elseif ($action == 'ssha512_password') { $this->page($this,'ssha512_password'); + } elseif ($action == 'ssha_password') { $this->page($this->ssha_password()); + } elseif ($action == 'ssha512_password') { $this->page($this->ssha512_password()); } elseif ($action == 'random_str') { $this->page($this->random_str()."\n"); - } elseif ($action == 'status') { $this->page($this,'status'); + } elseif ($action == 'status') { $this->page($this->status()); } elseif ($action == 'conf') { $this->page($this,'conf'); } elseif ($action == 'html') { $this->page(Mime::html($arg)); -- 2.47.3