summaryrefslogtreecommitdiff
path: root/skins
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-07-24 12:25:28 +0200
committerThomas Bruederli <thomas@roundcube.net>2012-07-24 12:25:28 +0200
commit2d2af72c22e7b3aca2f90f10bcda1c73767d9656 (patch)
treef5e729cef8c23a923f5571143ae1d878577e933d /skins
parent9d129b5fe2f35ecb497703d818a68d431b5782c6 (diff)
Correctly quote localized labels when used in javascript variables (#1488567)
Diffstat (limited to 'skins')
-rw-r--r--skins/larry/includes/footer.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/skins/larry/includes/footer.html b/skins/larry/includes/footer.html
index 4a6f8f09c..ee93fcf57 100644
--- a/skins/larry/includes/footer.html
+++ b/skins/larry/includes/footer.html
@@ -3,7 +3,7 @@
// UI startup
var UI = new rcube_mail_ui();
$(document).ready(function(){
- UI.set('errortitle', '<roundcube:label name="errortitle" />');
+ UI.set('errortitle', '<roundcube:label name="errortitle" quoting="javascript" />');
UI.init();
});