From b700a7d7c2ac1688b1c77f2317538702f1f613aa Mon Sep 17 00:00:00 2001 From: bergware Date: Wed, 25 May 2022 18:13:38 +0200 Subject: [PATCH] Bugfix: allow share names with & in it --- plugins/dynamix/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/dynamix/template.php b/plugins/dynamix/template.php index 3781e02ef..26a7af9c5 100644 --- a/plugins/dynamix/template.php +++ b/plugins/dynamix/template.php @@ -63,7 +63,7 @@ foreach (glob('plugins/*', GLOB_ONLYDIR) as $plugin) { } // Get general variables -$name = unscript($_GET['name']??''); +$name = untangle($_GET['name']??''); $dir = rawurldecode($_GET['dir']??''); $path = substr(strtok($_SERVER['REQUEST_URI'],'?'),1);