Remove (was: ...) from message subject on reply (#1489375)
| | |
| | | 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) |
| | |
| | | $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) { |