Fix decoding of HTML entitities in reminder alert

Fixes #2659
This commit is contained in:
Francis Lachapelle
2014-03-13 08:44:47 -04:00
parent bd577fd513
commit 8742f28c29
2 changed files with 2 additions and 1 deletions

View File

@@ -1477,7 +1477,7 @@ function showAlarmCallback(http) {
if (data["description"].length)
msg += "\n\n" + data["description"];
window.alert(msg.unescapeHTML());
window.alert(msg.decodeEntities());
showSelectDialog(data["summary"], _('Snooze for '),
{ '5': _('5 minutes'),
'10': _('10 minutes'),