diff options
author | Jonathan Stanley <shs@users.sourceforge.net> | 2007-04-13 15:33:22 +0000 |
---|---|---|
committer | Jonathan Stanley <shs@users.sourceforge.net> | 2007-04-13 15:33:22 +0000 |
commit | 5cde784419c77fe808e03b47007ef8f12fa83049 (patch) | |
tree | a32717e90ef1f77b4d0f3a26a0799f4a72e53a34 /phpBB/posting.php | |
parent | 59c4fad29693584f44fe3acf4de12291c4d8f170 (diff) | |
download | forums-5cde784419c77fe808e03b47007ef8f12fa83049.tar forums-5cde784419c77fe808e03b47007ef8f12fa83049.tar.gz forums-5cde784419c77fe808e03b47007ef8f12fa83049.tar.bz2 forums-5cde784419c77fe808e03b47007ef8f12fa83049.tar.xz forums-5cde784419c77fe808e03b47007ef8f12fa83049.zip |
Revert and undoing bug #9736
Won't fix, at least for 3.0.x. Re-review come 3.2.x and perhaps may be able to get localised prefixes, so something like:
Sv: Re: Antwort: <Subject>
... doesn't happen. :P
git-svn-id: file:///svn/phpbb/trunk@7354 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 3441e91076..d1b6946d6d 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'], $user->lang['SUBJECT_CONCERNING_PREFIX']) !== 0) ? $user->lang['SUBJECT_CONCERNING_PREFIX'] : '') . censor_text($post_data['post_subject']); + $post_data['post_subject'] = ((strpos($post_data['post_subject'], 'Re: ') !== 0) ? 'Re: ' : '') . censor_text($post_data['post_subject']); } $attachment_data = $message_parser->attachment_data; |