summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/namespace/Application.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/core/namespace/Application.php b/core/namespace/Application.php
index 39cb522..a43871e 100644
--- a/core/namespace/Application.php
+++ b/core/namespace/Application.php
@@ -94,13 +94,6 @@ class Application {
}
#===============================================================================
- # Return absolute root URL
- #===============================================================================
- public static function getAdminURL($more = ''): string {
- return self::getURL("admin/{$more}");
- }
-
- #===============================================================================
# Return absolute post URL
#===============================================================================
public static function getPostURL($more = ''): string {
@@ -129,6 +122,13 @@ class Application {
}
#===============================================================================
+ # Return absolute admin URL
+ #===============================================================================
+ public static function getAdminURL($more = ''): string {
+ return self::getURL("admin/{$more}");
+ }
+
+ #===============================================================================
# Return absolute template URL
#===============================================================================
public static function getTemplateURL($more = ''): string {