Skip to content

Commit

Permalink
Update code to show p-tag as bullet points
Browse files Browse the repository at this point in the history
  • Loading branch information
Sae126V committed Sep 6, 2024
1 parent 1fa8181 commit b9c9dd9
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions lib/Authentication/AuthTokens/ShibAuthToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,19 +212,20 @@ private function getEntitlementErrorMessage()
$sectionFragmentInfo = "/#using-institutional-account-via-egi-check-in";
$documentationURL = $resourceLink . $sectionFragmentInfo;

return '<ul>'
. '<li>Login requires the entitlement '
. 'urn:mace:egi.eu:res:gocdb#aai.egi.eu, '
. 'which was not provided. This entitlement is automatically '
. 'granted when using an identity provider compliant with '
return "<ul>"
. "<li>Login requires the entitlement "
. "urn:mace:egi.eu:res:gocdb#aai.egi.eu, "
. "which was not provided.</li>"
. "<li>This entitlement is automatically granted "
. "when using an identity provider compliant with "
. "<a href=\"{$refedsResAndSchURL}\" target='_blank'>"
. "REFEDS R&amp;S</a> and "
. "<a href=\"{$refedsSirtfiURL}\" target='_blank'>"
. "REFEDS Sirtfi</a>. "
. 'Please see here for more information: '
. '<a href="' . $documentationURL . 'target="_blank">'
. $documentationURL . '</a>.'
. '</li>'
. '</ul>';
. "REFEDS Sirtfi</a>.</li>"
. "<li>Please see here for more information: "
. "<a href=\"{$documentationURL}\" target='_blank'>"
. $documentationURL . "</a>."
. "</li>"
. "</ul>";
}
}

0 comments on commit b9c9dd9

Please sign in to comment.