]> git.nbdom.net Git - nb.git/commitdiff
Fix spelling expode to explode
authorNicolas Boisselier <nicolas.boisselier@gmail.com>
Mon, 12 Dec 2022 23:59:06 +0000 (00:59 +0100)
committerNicolas Boisselier <nicolas.boisselier@gmail.com>
Mon, 12 Dec 2022 23:59:06 +0000 (00:59 +0100)
www/dbq/dbq.php

index 9f90be5c77a53272d77abd7688c9ef41ad09ad03..c716b9521e187d892f5c12bc4f373e9be23e3f60 100644 (file)
@@ -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)) {