From ba18089ccb1b543b017943b805cad93ecb614ec3 Mon Sep 17 00:00:00 2001 From: Llewellyn van der Merwe Date: Mon, 4 Mar 2024 17:25:12 +0200 Subject: [PATCH] Update the JURI class to now use the Uri (namespace class) --- src/dynamic-content.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dynamic-content.php b/src/dynamic-content.php index 9e2a765..4046637 100644 --- a/src/dynamic-content.php +++ b/src/dynamic-content.php @@ -233,7 +233,7 @@ } } // return found content - return str_replace('[[[ROOT-URL]]]', JURI::root(), $target['html']); + return str_replace('[[[ROOT-URL]]]', Uri::root(), $target['html']); } } return $default;