From 845ffce87c181618ac52fd2ffddd8ec650af1ccb Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Tue, 13 Dec 2022 00:59:06 +0100 Subject: [PATCH] Fix spelling expode to explode --- 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 9f90be5c..c716b952 100644 --- a/www/dbq/dbq.php +++ b/www/dbq/dbq.php @@ -93,7 +93,7 @@ class DbQ extends nb { public $base; # Others - public $expode_args = '&'; + public $explode_args = '&'; # Object public $page; @@ -784,7 +784,7 @@ class DbQ extends nb { list ($path,$args) = strpos($_SERVER['REQUEST_URI'],'?') ? explode('?',$_SERVER['REQUEST_URI']) : [$_SERVER['REQUEST_URI'],'']; $this->uri = $path; - $this->uri_params = explode($this->expode_args,$args); + $this->uri_params = explode($this->explode_args,$args); // We accept sub extention, that will determine if we want to print the full page if (preg_match('/\.((\w+)(\.html)?)$/',$path,$m)) { -- 2.47.3