X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Flistcommands%2Fmailout.php;h=2c62685d754c23f32e44d4851a594fa342c25f54;hp=c94d875fc733dfd4abf2f97fd85ab90ac412db36;hb=8ed1923822b383ddb338e9eef75bb7f110cc47b4;hpb=5e5daa47f6270e55903f95fb3deff491fde2d6f5 diff --git a/plugins/listcommands/mailout.php b/plugins/listcommands/mailout.php index c94d875f..2c62685d 100644 --- a/plugins/listcommands/mailout.php +++ b/plugins/listcommands/mailout.php @@ -3,7 +3,7 @@ /** * mailout.php * - * @copyright 1999-2015 The SquirrelMail Project Team + * @copyright 1999-2019 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package plugins @@ -26,6 +26,7 @@ sqgetGlobalVar('send_to', $send_to, SQ_GET); sqgetGlobalVar('subject', $subject, SQ_GET); sqgetGlobalVar('body', $body, SQ_GET); sqgetGlobalVar('action', $action, SQ_GET); +sqgetGlobalVar('identity', $identity, SQ_GET); displayPageHeader($color, $mailbox); @@ -58,6 +59,7 @@ $oTemplate->assign('subject', $subject); $oTemplate->assign('body', $body); $oTemplate->assign('mailbox', $mailbox); $oTemplate->assign('idents', $idents); +$oTemplate->assign('identity', $identity); $oTemplate->display('plugins/listcommands/mailout.tpl'); $oTemplate->display('footer.tpl');