2
0
Эх сурвалжийг харах

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.
emericklaw 6 жил өмнө
parent
commit
472a99ff00

+ 1 - 1
data/web/mobileconfig.php

@@ -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;