diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2004-06-24 08:09:00 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2004-06-24 08:09:00 +0000 |
| commit | 48eeecb25893839ef9c9290d616083a6f1351b19 (patch) | |
| tree | 1ea477f621428701da5292e8a5c857207f17a9e0 /phpBB/includes/functions_posting.php | |
| parent | 2f4f5c5ede10a347e6d6e2c49571b7775af5af5c (diff) | |
| download | forums-48eeecb25893839ef9c9290d616083a6f1351b19.tar forums-48eeecb25893839ef9c9290d616083a6f1351b19.tar.gz forums-48eeecb25893839ef9c9290d616083a6f1351b19.tar.bz2 forums-48eeecb25893839ef9c9290d616083a6f1351b19.tar.xz forums-48eeecb25893839ef9c9290d616083a6f1351b19.zip | |
- fixed topic icon display (correct radio box checked, only visible in first post)
git-svn-id: file:///svn/phpbb/trunk@4919 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_posting.php')
| -rw-r--r-- | phpBB/includes/functions_posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 00d521d412..f3aeeb67a2 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -714,7 +714,7 @@ function posting_gen_topic_icons($mode, $icon_id) 'ICON_WIDTH' => $data['width'], 'ICON_HEIGHT' => $data['height'], - 'S_ICON_CHECKED' => ($id == $icon_id && $mode != 'reply') ? ' checked="checked"' : '') + 'S_ICON_CHECKED' => ($id == $icon_id) ? ' checked="checked"' : '') ); } } |
