From b7a975a54d6b5ac13f781aa0fc2e6b7dbabd626b Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Mon, 26 Dec 2022 01:01:36 +0900 Subject: [PATCH] Fix incorrect capitalization of URL class name --- modules/module/module.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/module/module.class.php b/modules/module/module.class.php index 29789295f..7ef3040a7 100644 --- a/modules/module/module.class.php +++ b/modules/module/module.class.php @@ -21,7 +21,7 @@ class module extends ModuleObject // Insert new domain if(!getModel('module')->getDefaultDomainInfo()) { - $current_url = Rhymix\Framework\Url::getCurrentUrl(); + $current_url = Rhymix\Framework\URL::getCurrentUrl(); $current_port = intval(parse_url($current_url, PHP_URL_PORT)) ?: null; $domain = new stdClass(); $domain->domain_srl = 0;