From e501b018e44d9b829c61272083d6338577185a05 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Wed, 2 Dec 2020 13:42:23 +0100 Subject: [PATCH] Fix firefox double load of quickshell --- pandora_console/extensions/quick_shell.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/extensions/quick_shell.php b/pandora_console/extensions/quick_shell.php index 5505caa3af..e6890af6ec 100644 --- a/pandora_console/extensions/quick_shell.php +++ b/pandora_console/extensions/quick_shell.php @@ -251,6 +251,12 @@ function quickShell() $new .= $config['ws_proxy_url'].'/'.$method."';"; } + // Update firefox issue. + $original = ' this.iframe_.src = \'#\';'; + $trick = 'this.iframe_.src = \'javascript:\';'; + + $r = str_replace($original, $trick, $r); + // Update url. $gotty = str_replace($url, $new, $gotty);