Remove (was: ...) from message subject on reply (#1489375)

pull/193/head^2
Aleksander Machniak 10 years ago
parent 5377753ccc
commit 3dbfb53f2b

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Remove (was: ...) from message subject on reply (#1489375)
- Update to TinyMCE 4.0 (#1489057)
- Enable autolink plugin in TinyMCE (#1488845)
- Support image operations with Imagick extension (#1489734)

@ -1457,6 +1457,9 @@ function rcmail_compose_subject($attrib)
$subject = $MESSAGE->subject;
else
$subject = 'Re: '.$MESSAGE->subject;
// replace (was: ...) (#1489375)
$subject = preg_replace('/\s*\([wW]as:[^\)]+\)\s*$/', '', $subject);
}
// create a forward-subject
else if ($compose_mode == RCUBE_COMPOSE_FORWARD) {

Loading…
Cancel
Save