Skip to content

Commit

Permalink
[Core] Error page - Main page link fix
Browse files Browse the repository at this point in the history
  • Loading branch information
laemtl committed Dec 22, 2020
1 parent 6273c34 commit af040b3
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/Http/Error.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,26 +47,24 @@ public function __construct(
$uri = $request->getURI();
$baseurl = $uri->getScheme() .'://'. $uri->getAuthority();

$tpl_data = [];
$tpl_data = [
'message' => $message,
'baseurl' => $baseurl,
];

$lorisInstance = $request->getAttribute('loris');
$user = $request->getAttribute('user') ?? new \LORIS\AnonymousUser();


// Add a link to the issue tracker as long as a LORIS Instance object
// is present in the request.
if (! $user instanceof \LORIS\AnonymousUser
&& $lorisInstance !== null
) {
// Add admistrator email.
$contact = $lorisInstance
$tpl_data['contact'] = $lorisInstance
->getConfiguration()
->getSetting('mail')['From'];
$tpl_data = array(
'message' => $message,
'baseurl' => $baseurl,
'contact' => $contact,
);

// Add issue tracker data if the error is encountered by a user with
// the correct permissions.
$canReport = $user->hasAnyPermission(
Expand Down

0 comments on commit af040b3

Please # to comment.