diff options
author | Thomas Lange <code@nerdmind.de> | 2021-06-21 02:03:17 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-06-21 02:07:27 +0200 |
commit | 70f366ce1d102e4712af2408e6dcf5432b1926c2 (patch) | |
tree | e582e476329a432f5642ead3d94e3d7af4d79862 /core/namespace/Item.php | |
parent | 466420be275aeb0af1abd34639e5a570db50313f (diff) | |
download | blog-70f366ce1d102e4712af2408e6dcf5432b1926c2.tar.gz blog-70f366ce1d102e4712af2408e6dcf5432b1926c2.tar.xz blog-70f366ce1d102e4712af2408e6dcf5432b1926c2.zip |
Use getEntityURL method of Application class
This commit replaces all calls to "$Item->getURL()" with calls to the
previously added "getEntityURL" method of the "Application" class.
Diffstat (limited to 'core/namespace/Item.php')
-rw-r--r-- | core/namespace/Item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/namespace/Item.php b/core/namespace/Item.php index 02de382..f674a60 100644 --- a/core/namespace/Item.php +++ b/core/namespace/Item.php @@ -62,7 +62,7 @@ abstract class Item implements ItemInterface { try { $Item = $namespace::build($matches[2]); - return $Item->getURL(); + return Application::getEntityURL($Item); } catch(Exception $Exception) { return '{undefined}'; } |