Skip to content

Commit

Permalink
Hotfix for bug #13582.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Sep 19, 2014
1 parent 32c9b1a commit ff75d13
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions imp/js/dimpbase.js
Expand Up @@ -4212,7 +4212,8 @@ var IMP_Flist_Mbox = Class.create({
return;
}
parent_e = tmp.subElement();
} else {
}
if (!parent_e) {
parent_e = $('imp-normalmboxes');
}

Expand Down Expand Up @@ -4335,7 +4336,7 @@ var IMP_Flist_Mbox = Class.create({
{
var m_elt;

if (this.data.fake) {
if (this.data.fake && this.data.fake.data) {
return this.data.fake.subElement();
}

Expand Down

0 comments on commit ff75d13

Please sign in to comment.