diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2004-09-28 17:46:57 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2004-09-28 17:46:57 +0000 |
commit | bca152dadad5bd9b41292aac1e60c5900c2b570f (patch) | |
tree | c4863032df8fbb766643f6c4b039e1d319cb977d /phpBB/posting.php | |
parent | 857670f522d4e710d6440bb5e709c400485abb0c (diff) | |
download | forums-bca152dadad5bd9b41292aac1e60c5900c2b570f.tar forums-bca152dadad5bd9b41292aac1e60c5900c2b570f.tar.gz forums-bca152dadad5bd9b41292aac1e60c5900c2b570f.tar.bz2 forums-bca152dadad5bd9b41292aac1e60c5900c2b570f.tar.xz forums-bca152dadad5bd9b41292aac1e60c5900c2b570f.zip |
- fixing ongoing "topic/post icons bug"
git-svn-id: file:///svn/phpbb/trunk@4989 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 c0008dfe93..fb5b91dde9 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -159,7 +159,7 @@ if ($sql) $poll_start = (isset($poll_start)) ? (int) $poll_start : 0; $poll_options = array(); - if (!isset($icon_id)) + if (!isset($icon_id) || in_array($mode, array('quote', 'reply'))) { $icon_id = 0; } |