From: Michael M Slusarz Date: Thu, 18 Feb 2010 05:18:58 +0000 (-0700) Subject: Fix adding body text to forward. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=faaaf492e85ef454da5d9bd1a41cd54a3d321bf8;p=horde.git Fix adding body text to forward. Don't check for locked forward_default pref in forwardMessage(). It prevents us from adding body text in dimp. A locked preference here only means not to show the list of forward choices. --- diff --git a/imp/lib/Compose.php b/imp/lib/Compose.php index c2fa9e5ad..8df437852 100644 --- a/imp/lib/Compose.php +++ b/imp/lib/Compose.php @@ -1534,8 +1534,7 @@ class IMP_Compose 'subject' => '' ); - if ($GLOBALS['prefs']->isLocked('forward_default') || - ($type == 'forward_auto')) { + if ($type == 'forward_auto') { if (!($type = $GLOBALS['prefs']->getValue('forward_default'))) { $type = 'attach'; }