diff options
author | Nils Adermann <naderman@naderman.de> | 2010-05-30 15:05:06 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2010-05-30 15:05:06 +0200 |
commit | c38cb1761c2a134b640e24031a32fe622c9f396b (patch) | |
tree | 0729afaed741bc55dd69b08b6535b4733e1e8b73 /phpBB/includes/functions_posting.php | |
parent | 8f91e6ce8be5e79b58c70dc212c5f83b0d8b7094 (diff) | |
parent | 801a44b3f0701fc4ccf726c66a4aa0d44ca10f11 (diff) | |
download | forums-c38cb1761c2a134b640e24031a32fe622c9f396b.tar forums-c38cb1761c2a134b640e24031a32fe622c9f396b.tar.gz forums-c38cb1761c2a134b640e24031a32fe622c9f396b.tar.bz2 forums-c38cb1761c2a134b640e24031a32fe622c9f396b.tar.xz forums-c38cb1761c2a134b640e24031a32fe622c9f396b.zip |
Merge branch 'ticket/nickvergessen/9147' into develop-olympus
* ticket/nickvergessen/9147:
[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 |