aboutsummaryrefslogtreecommitdiffstats
path: root/core/include/user/main.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-06-21 02:03:17 +0200
committerThomas Lange <code@nerdmind.de>2021-06-21 02:07:27 +0200
commit70f366ce1d102e4712af2408e6dcf5432b1926c2 (patch)
treee582e476329a432f5642ead3d94e3d7af4d79862 /core/include/user/main.php
parent466420be275aeb0af1abd34639e5a570db50313f (diff)
downloadblog-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/include/user/main.php')
-rw-r--r--core/include/user/main.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/include/user/main.php b/core/include/user/main.php
index 80969da..3b8b25a 100644
--- a/core/include/user/main.php
+++ b/core/include/user/main.php
@@ -50,7 +50,7 @@ try {
$MainTemplate->set('HEAD', [
'NAME' => $user_data['ATTR']['FULLNAME'],
'DESC' => description($user_data['BODY']['HTML'](), Application::get('USER.DESCRIPTION_SIZE')),
- 'PERM' => $User->getURL(),
+ 'PERM' => $user_data['URL'],
'OG_IMAGES' => $User->getFiles()
]);
@@ -72,7 +72,7 @@ catch(User\Exception $Exception) {
$User = User\Factory::build($param);
}
- HTTP::redirect($User->getURL());
+ HTTP::redirect(Application::getEntityURL($User));
}
catch(User\Exception $Exception) {