Skip to content

Commit

Permalink
Fix email for Attribute Release Problem. Need to remove quote charact…
Browse files Browse the repository at this point in the history
…ers.
  • Loading branch information
terrencegf committed Jan 3, 2021
1 parent c64a316 commit 3bdcd5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service/Content.php
Expand Up @@ -1697,7 +1697,7 @@ public static function printSAMLAttributeReleaseErrorPage(
'&body=Hello, I am having trouble logging on to ' .
'https://' . DEFAULT_HOSTNAME . '/ using the ' . $idp_display_name .
' Identity Provider (IdP) ' .
((strlen($portalname) > 0) ? 'with "' . htmlspecialchars($portalname) . '" ' : '') .
((strlen($portalname) > 0) ? 'with ' . strip_tags($portalname) . ' ' : '') .
'due to the following missing attributes:%0D%0A' .
$missingattrs;
if ($student) {
Expand Down

0 comments on commit 3bdcd5c

Please sign in to comment.