aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-02-26 05:12:17 +0100
committerThomas Lange <code@nerdmind.de>2017-02-26 05:12:17 +0100
commit63c97d4721c3869320d4c5c05ce8c8d66bec1fbf (patch)
tree5cf18aae4c659c4f17533350ae2c4780f869ac69 /core/namespace
parentc5e03a48f9c31d19270e92e670395d7e7911bf17 (diff)
downloadblog-63c97d4721c3869320d4c5c05ce8c8d66bec1fbf.tar.gz
blog-63c97d4721c3869320d4c5c05ce8c8d66bec1fbf.tar.xz
blog-63c97d4721c3869320d4c5c05ce8c8d66bec1fbf.zip
Incorrect comment corrected and function moved to another line.
Diffstat (limited to 'core/namespace')
-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 {