Handle mobileconfig display names with special characters

If the account display name contained special characters like & the mobileconfig would fail to import on the iOS device.
master
emericklaw 2019-05-03 13:31:10 +01:00 committed by GitHub
parent b09fab9125
commit 472a99ff00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ try {
$stmt = $pdo->prepare("SELECT `name` FROM `mailbox` WHERE `username`= :username");
$stmt->execute(array(':username' => $email));
$MailboxData = $stmt->fetch(PDO::FETCH_ASSOC);
$displayname = empty($MailboxData['name']) ? $email : $MailboxData['name'];
$displayname = htmlspecialchars(empty($MailboxData['name']) ? $email : $MailboxData['name']);
}
catch(PDOException $e) {
$displayname = $email;