aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-04-11 21:30:52 +0200
committerThomas Lange <code@nerdmind.de>2017-04-11 21:30:52 +0200
commite38d3ed0c779619c8260585f794931c8f55fdd54 (patch)
tree999c7c580fb0736ad9393b3d545676cadf8ca9fc
parentb66d953dd1f757b43b93aafe115bf838e386811b (diff)
downloadblog-e38d3ed0c779619c8260585f794931c8f55fdd54.tar.gz
blog-e38d3ed0c779619c8260585f794931c8f55fdd54.tar.xz
blog-e38d3ed0c779619c8260585f794931c8f55fdd54.zip
Inconsistency in class method fixed.
-rw-r--r--core/namespace/Application.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/namespace/Application.php b/core/namespace/Application.php
index 2770a1a..5bcd724 100644
--- a/core/namespace/Application.php
+++ b/core/namespace/Application.php
@@ -133,7 +133,7 @@ class Application {
#===============================================================================
public static function getTemplateURL($more = ''): string {
$template = self::get('TEMPLATE.NAME');
- return Application::getURL("template/{$template}/{$more}");
+ return self::getURL("template/{$template}/{$more}");
}
#===============================================================================