Fixed urlencoded arguments

This commit is contained in:
Conner Harkness 2025-09-04 11:27:28 -06:00
parent e44526aa5a
commit 147d4871ac

View File

@ -21,7 +21,7 @@
array_walk($varFiles, "removeQueryDir"); array_walk($varFiles, "removeQueryDir");
$strSelection = implode("/", Request::getArgs()); $strSelection = implode("/", Request::getArgs());
$strQueryPath = "{$strQueryDir}/{$strSelection}"; $strQueryPath = urldecode("{$strQueryDir}/{$strSelection}");
$strQueryView = null; $strQueryView = null;
$varInputs = [[]]; $varInputs = [[]];