Update the JURI class to now use the Uri (namespace class)

This commit is contained in:
Llewellyn van der Merwe 2024-03-04 17:25:12 +02:00
parent fa57732d93
commit ba18089ccb
Signed by: Llewellyn
GPG Key ID: A9201372263741E7

View File

@ -233,7 +233,7 @@
} }
} }
// return found content // return found content
return str_replace('[[[ROOT-URL]]]', JURI::root(), $target['html']); return str_replace('[[[ROOT-URL]]]', Uri::root(), $target['html']);
} }
} }
return $default; return $default;