diff options
| author | Jonathan Stanley <shs@users.sourceforge.net> | 2007-04-13 04:13:50 +0000 |
|---|---|---|
| committer | Jonathan Stanley <shs@users.sourceforge.net> | 2007-04-13 04:13:50 +0000 |
| commit | a8afdd121525d7adfe37e09f535472557ff36e2f (patch) | |
| tree | 04e02e29eba942b8ae6370b565d00a4ae065611a /phpBB/posting.php | |
| parent | a05c522f313ab5e1acc81569e9fa54022907e845 (diff) | |
| download | forums-a8afdd121525d7adfe37e09f535472557ff36e2f.tar forums-a8afdd121525d7adfe37e09f535472557ff36e2f.tar.gz forums-a8afdd121525d7adfe37e09f535472557ff36e2f.tar.bz2 forums-a8afdd121525d7adfe37e09f535472557ff36e2f.tar.xz forums-a8afdd121525d7adfe37e09f535472557ff36e2f.zip | |
#9736
Quidquid latine dictum sit, altum sonatur. :P
git-svn-id: file:///svn/phpbb/trunk@7341 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/posting.php')
| -rw-r--r-- | phpBB/posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index d1b6946d6d..3441e91076 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -1063,7 +1063,7 @@ if ($mode == 'quote' && !$submit && !$preview && !$refresh) if (($mode == 'reply' || $mode == 'quote') && !$submit && !$preview && !$refresh) { - $post_data['post_subject'] = ((strpos($post_data['post_subject'], 'Re: ') !== 0) ? 'Re: ' : '') . censor_text($post_data['post_subject']); + $post_data['post_subject'] = ((strpos($post_data['post_subject'], $user->lang['SUBJECT_CONCERNING_PREFIX']) !== 0) ? $user->lang['SUBJECT_CONCERNING_PREFIX'] : '') . censor_text($post_data['post_subject']); } $attachment_data = $message_parser->attachment_data; |
