<input type="checkbox" name="post_type[]" value="<?php 
mb_forum_post_type();
?>
" /> 
				<?php 
mb_forum_label('name');
?>
			</label>
			<br />
			<label>
				<input type="checkbox" name="post_type[]" value="<?php 
mb_topic_post_type();
?>
" checked="checked" /> 
				<?php 
mb_topic_label('name');
?>
			</label>
			<br />
			<label>
				<input type="checkbox" name="post_type[]" value="<?php 
mb_reply_post_type();
?>
" checked="checked" /> 
				<?php 
mb_reply_label('name');
?>
			</label>
		</p>

	</fieldset>
			<input type="submit" value="<?php 
esc_attr_e('Create Topic', 'message-board');
?>
" />
		</p><!-- .mb-form-submit -->

		<?php 
if (mb_is_subscriptions_active()) {
    // Only show subscribe if subscriptions enabled.
    ?>

			<p class="mb-form-subscribe">
				<label>
					<input type="checkbox" name="mb_topic_subscribe" value="1" /> 
					<?php 
    mb_topic_label('mb_form_subscribe');
    ?>
				</label>
			</p><!-- .mb-form-subscribe -->

		<?php 
}
// End check if subscriptions enabled.
?>

		<?php 
do_action('mb_topic_form_fields');
?>

	</fieldset>