From 33db197d07106fcca5374480fe11610471ad0108 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 24 May 2023 18:11:38 +0000 Subject: [PATCH] bug fixes and item management improvements --- Views/TicketView.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Views/TicketView.php b/Views/TicketView.php index 0ef113a..0039b65 100755 --- a/Views/TicketView.php +++ b/Views/TicketView.php @@ -71,10 +71,10 @@ class TicketView extends View $profile = ProfileMapper::get()->with('image')->where('account', $account)->execute(); if ($profile->id === 0 || $profile->image->getPath() === '') { - return UriFactory::build('{/base}/' . $this->defaultProfileImage->getPath()); + return UriFactory::build($this->defaultProfileImage->getPath()); } - return UriFactory::build('{/base}/' . $profile->image->getPath()); + return UriFactory::build($profile->image->getPath()); } /**