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()); } /**