diff options
author | thomascube <thomas@roundcube.net> | 2012-02-25 17:56:11 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-02-25 17:56:11 +0000 |
commit | 589385f37fa1de64327cbc037b30ce4efc18a3cc (patch) | |
tree | 2297cf7386c502b416c4bc694207930865c1a3b4 /program | |
parent | ec366b32d328106d0a68602c0b12924a24da4634 (diff) |
Fix script error in IE (#1488368)
Diffstat (limited to 'program')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 943136ee3..949502ebc 100644 --- a/program/js/app.js +++ b/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); |