Update to remove JUri class

Line 247 - remove JUri class, replaced with Uri class
This commit is contained in:
stutteringp0et 2024-03-17 04:12:53 +00:00
parent 1a210a4c7b
commit 474c993ad5

View File

@ -244,6 +244,6 @@ class HtmlView extends BaseHtmlView
// add var key
$this->getDocument()->addScriptDeclaration("var vastDevMod = '" . $this->get('VDM') . "';");
// add return_here
$this->getDocument()->addScriptDeclaration("var return_here = '" . urlencode(base64_encode((string) \JUri::getInstance())) . "';");
$this->getDocument()->addScriptDeclaration("var return_here = '" . urlencode(base64_encode((string) Uri::getInstance())) . "';");
}
}