From: Nicolas Boisselier Date: Mon, 12 Dec 2022 23:59:06 +0000 (+0100) Subject: Fix spelling expode to explode X-Git-Url: https://git.nbdom.net/?a=commitdiff_plain;h=845ffce87c181618ac52fd2ffddd8ec650af1ccb;p=nb.git Fix spelling expode to explode --- 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)) {