summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-06-26 20:33:14 +0200
committerAleksander Machniak <alec@alec.pl>2014-06-26 20:34:19 +0200
commitc627d3bb02a41716af17dff5eca8d7df30297414 (patch)
treedf9fa07fa71a3f1d6d0dab1f45bf6b0f87ee34fd
parent2a700d7c00e20815602dc0e20c9c71b436abfce0 (diff)
Fix incorrect label translation in return receipt (#1489963)
-rw-r--r--CHANGELOG1
-rw-r--r--program/steps/mail/func.inc2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 9ad868980..8085b85c9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -17,6 +17,7 @@ CHANGELOG Roundcube Webmail
- Fix malformed recipient name when composing a message by clicking on mailto link (#1489942)
- Fix list reload after sending message in another window (#1489931)
- Fix so address format errors are ignored when saving a draft (#1489954)
+- Fix incorrect label translation in return receipt (#1489963)
RELEASE 1.0.1
-------------
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc
index 3f4362e00..80c37e3b4 100644
--- a/program/steps/mail/func.inc
+++ b/program/steps/mail/func.inc
@@ -1813,7 +1813,7 @@ function rcmail_send_mdn($message, &$smtp_error)
$body = $RCMAIL->gettext("yourmessage") . "\r\n\r\n" .
"\t" . $RCMAIL->gettext("to") . ': ' . rcube_mime::decode_mime_string($message->headers->to, $message->headers->charset) . "\r\n" .
"\t" . $RCMAIL->gettext("subject") . ': ' . $message->subject . "\r\n" .
- "\t" . $RCMAIL->gettext("sent") . ': ' . $RCMAIL->format_date($message->headers->date, $RCMAIL->config->get('date_long')) . "\r\n" .
+ "\t" . $RCMAIL->gettext("date") . ': ' . $RCMAIL->format_date($message->headers->date, $RCMAIL->config->get('date_long')) . "\r\n" .
"\r\n" . $RCMAIL->gettext("receiptnote");
$compose->headers($headers);