diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-02-25 17:56:11 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-02-25 17:56:11 +0000 |
| commit | 58e6c331a893f9af2be72f7bf0c34f6dc753c3a9 (patch) | |
| tree | b8eb836c7e3190feff714295f342e3c2cc322cca /roundcubemail/program | |
| parent | 867f1e6f4ff2beadaabc50d19d6b1ee69662254b (diff) | |
Fix script error in IE (#1488368)
git-svn-id: https://svn.roundcube.net/trunk@5910 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 943136ee3..949502ebc 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -4655,7 +4655,7 @@ function rcube_webmail() { var n, buttons = this.buttons['upload-photo']; for (n=0; buttons && n < buttons.length; n++) - $('#'+buttons[n].id).html(this.get_label(id == '-del-' ? 'addphoto' : 'replacephoto')); + $('a#'+buttons[n].id).html(this.get_label(id == '-del-' ? 'addphoto' : 'replacephoto')); $('#ff_photo').val(id); this.enable_command('upload-photo', this.env.coltypes.photo ? true : false); |
