From: Michael M Slusarz Date: Thu, 19 Aug 2010 16:48:53 +0000 (-0600) Subject: Bug #9187: Fix variable typo. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=b371414ef2533f1b57355c545afc8b4901c76bfb;p=horde.git Bug #9187: Fix variable typo. --- diff --git a/imp/lib/Ui/Compose.php b/imp/lib/Ui/Compose.php index 167e96964..77322cc35 100644 --- a/imp/lib/Ui/Compose.php +++ b/imp/lib/Ui/Compose.php @@ -380,7 +380,7 @@ class IMP_Ui_Compose } elseif ($imp_identity->getValue('sig_first', $identity)) { return $sig . $data; } else { - return $msg . "\n" . $sig; + return $data . "\n" . $sig; } }