From: Michael M Slusarz Date: Fri, 26 Jun 2009 05:18:18 +0000 (-0600) Subject: Fix address context actions. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=4262b30ebc5b2f22e5109dab520aad6eff6df134;p=horde.git Fix address context actions. --- diff --git a/imp/js/src/DimpCore.js b/imp/js/src/DimpCore.js index bfbe9f103..ea5c0f088 100644 --- a/imp/js/src/DimpCore.js +++ b/imp/js/src/DimpCore.js @@ -449,11 +449,11 @@ var DimpCore = { { switch (elt.readAttribute('id')) { case 'ctx_contacts_new': - this.compose('new', { to: elt.readAttribute('address') }); + this.compose('new', { to: baseelt.readAttribute('address') }); break; case 'ctx_contacts_add': - this.doAction('AddContact', { name: elt.readAttribute('personal'), email: elt.readAttribute('email') }, null, true); + this.doAction('AddContact', { name: baseelt.readAttribute('personal'), email: baseelt.readAttribute('email') }, null, true); break; } },