diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2007-02-09 14:31:17 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-02-09 14:31:17 +0000 |
| commit | 5e3afe73ecfbae4e9b2e134e8e617f843da5be90 (patch) | |
| tree | 512d101ebc64fa3c85e54d6180a42b6b346173a9 /phpBB/includes/functions_messenger.php | |
| parent | ffb28e03aefcd6ae88ef68448cd7b313c1c77722 (diff) | |
| download | forums-5e3afe73ecfbae4e9b2e134e8e617f843da5be90.tar forums-5e3afe73ecfbae4e9b2e134e8e617f843da5be90.tar.gz forums-5e3afe73ecfbae4e9b2e134e8e617f843da5be90.tar.bz2 forums-5e3afe73ecfbae4e9b2e134e8e617f843da5be90.tar.xz forums-5e3afe73ecfbae4e9b2e134e8e617f843da5be90.zip | |
those were missing
git-svn-id: file:///svn/phpbb/trunk@6977 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_messenger.php')
| -rw-r--r-- | phpBB/includes/functions_messenger.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_messenger.php b/phpBB/includes/functions_messenger.php index 755a6d9116..d63a31ffb5 100644 --- a/phpBB/includes/functions_messenger.php +++ b/phpBB/includes/functions_messenger.php @@ -209,12 +209,12 @@ class messenger $match = array(); if (preg_match('#^(Subject:(.*?))$#m', $this->msg, $match)) { - $this->subject = (trim($match[2]) != '') ? trim($match[2]) : (($this->subject != '') ? $this->subject : $user->lang['NO_SUBJECT']); + $this->subject = (trim($match[2]) != '') ? trim($match[2]) : (($this->subject != '') ? $this->subject : $user->lang['NO_EMAIL_SUBJECT']); $drop_header .= '[\r\n]*?' . preg_quote($match[1], '#'); } else { - $this->subject = (($this->subject != '') ? $this->subject : $user->lang['NO_SUBJECT']); + $this->subject = (($this->subject != '') ? $this->subject : $user->lang['NO_EMAIL_SUBJECT']); } if ($drop_header) |
