diff options
author | David M <davidmj@users.sourceforge.net> | 2005-12-27 13:44:17 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2005-12-27 13:44:17 +0000 |
commit | eb45360c02fabbb743a1a977c5fa94555469e547 (patch) | |
tree | ff369cceb499a59db390654a0c9d48d506d6a031 | |
parent | d02f498745b43c2a74ef03c4c3772527062e7f17 (diff) | |
download | forums-eb45360c02fabbb743a1a977c5fa94555469e547.tar forums-eb45360c02fabbb743a1a977c5fa94555469e547.tar.gz forums-eb45360c02fabbb743a1a977c5fa94555469e547.tar.bz2 forums-eb45360c02fabbb743a1a977c5fa94555469e547.tar.xz forums-eb45360c02fabbb743a1a977c5fa94555469e547.zip |
- Post/Topic icon text selection is fixed
git-svn-id: file:///svn/phpbb/trunk@5380 89ea8834-ac86-4346-8a33-228a782c2dd0
-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 d986f958a5..54427e6e0d 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -1070,7 +1070,7 @@ $form_enctype = (@ini_get('file_uploads') == '0' || strtolower(@ini_get('file_up // Start assigning vars for main posting page ... $template->assign_vars(array( 'L_POST_A' => $page_title, - 'L_ICON' => ($mode == 'reply' || $mode == 'quote') ? $user->lang['POST_ICON'] : $user->lang['TOPIC_ICON'], + 'L_ICON' => ($mode == 'reply' || $mode == 'quote' || ($mode == 'edit' && $post_id != $topic_first_post_id)) ? $user->lang['POST_ICON'] : $user->lang['TOPIC_ICON'], 'L_MESSAGE_BODY_EXPLAIN'=> (intval($config['max_post_chars'])) ? sprintf($user->lang['MESSAGE_BODY_EXPLAIN'], intval($config['max_post_chars'])) : '', 'FORUM_NAME' => $forum_name, |