diff options
author | Thomas Lange <code@nerdmind.de> | 2017-02-26 05:12:17 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-02-26 05:12:17 +0100 |
commit | 63c97d4721c3869320d4c5c05ce8c8d66bec1fbf (patch) | |
tree | 5cf18aae4c659c4f17533350ae2c4780f869ac69 | |
parent | c5e03a48f9c31d19270e92e670395d7e7911bf17 (diff) | |
download | blog-63c97d4721c3869320d4c5c05ce8c8d66bec1fbf.tar.gz blog-63c97d4721c3869320d4c5c05ce8c8d66bec1fbf.tar.xz blog-63c97d4721c3869320d4c5c05ce8c8d66bec1fbf.zip |
Incorrect comment corrected and function moved to another line.
-rw-r--r-- | core/namespace/Application.php | 14 |
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 { |