diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2010-06-15 15:02:16 +0200 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2010-06-15 15:02:16 +0200 |
| commit | fe690779d4439071194ee3d047363ccd5fff4538 (patch) | |
| tree | 8a48e8364a589f1bc94684e8b9fdcc88c60e0edf /phpBB/includes/functions_posting.php | |
| parent | 2cf57822bb4607d595affaef2264f064cb984c55 (diff) | |
| parent | 6c7d16894b38ed67480813372e08b308b81bcabf (diff) | |
| download | forums-fe690779d4439071194ee3d047363ccd5fff4538.tar forums-fe690779d4439071194ee3d047363ccd5fff4538.tar.gz forums-fe690779d4439071194ee3d047363ccd5fff4538.tar.bz2 forums-fe690779d4439071194ee3d047363ccd5fff4538.tar.xz forums-fe690779d4439071194ee3d047363ccd5fff4538.zip | |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/9623] Proper UTF8 encoding for usernames in pruning section
[ticket/9633] Newly Registered Group Colour not used in "Our Newest Member"
[ticket/9179] Remove unnecessary newline.
[ticket/9147] "Change topic type"-option "Normal" always selected.
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 7242e7987b..f6f90575d4 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -348,7 +348,7 @@ function posting_gen_topic_types($forum_id, $cur_topic_type = POST_NORMAL) { $topic_type_array = array_merge(array(0 => array( 'VALUE' => POST_NORMAL, - 'S_CHECKED' => ($topic_type == POST_NORMAL) ? ' checked="checked"' : '', + 'S_CHECKED' => ($cur_topic_type == POST_NORMAL) ? ' checked="checked"' : '', 'L_TOPIC_TYPE' => $user->lang['POST_NORMAL'])), $topic_type_array |
