From faaaf492e85ef454da5d9bd1a41cd54a3d321bf8 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Wed, 17 Feb 2010 22:18:58 -0700 Subject: [PATCH] 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. --- imp/lib/Compose.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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'; } -- 2.11.0