From: Michael M Slusarz Date: Tue, 19 Oct 2010 19:00:59 +0000 (-0600) Subject: Fix opening new compose message with to address X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=1532939f784c60d132838e90a557514411d1067c;p=horde.git Fix opening new compose message with to address --- diff --git a/imp/js/dimpcore.js b/imp/js/dimpcore.js index 2b54bcc27..419313ca6 100644 --- a/imp/js/dimpcore.js +++ b/imp/js/dimpcore.js @@ -271,6 +271,8 @@ var DimpCore = { if (type.startsWith('forward') || !args || !args.uids) { if (type.startsWith('forward')) { params.uids = this.toRangeString(this.selectionToRange(args.uids)); + } else if (args.to) { + params.to = args.to; } this.popupWindow(this.addURLParam(DIMP.conf.URI_COMPOSE, params), 'compose' + new Date().getTime()); } else {