| 224 | In ./bb-includes/functions.bb-template.php a section around line 278 was commented out: |
| 225 | |
| 226 | {{{ |
| 227 | /* |
| 228 | if ( empty( $h2 ) && false !== $h2 ) { |
| 229 | if ( bb_is_topic() ) { |
| 230 | $h2 = __( 'Reply' ); |
| 231 | } elseif ( bb_is_forum() ) { |
| 232 | $h2 = __( 'New Topic in this Forum' ); |
| 233 | } elseif ( bb_is_tag() || bb_is_front() ) { |
| 234 | $h2 = __( 'Add New Topic' ); |
| 235 | } |
| 236 | } |
| 237 | */ |
| 238 | }}} |
| 239 | |
| 240 | And around line 310 another section was commented: |
| 241 | |
| 242 | {{{ |
| 243 | } /* elseif ( !bb_is_user_logged_in() ) { |
| 244 | echo '<p>'; |
| 245 | printf( |
| 246 | __('You must <a href="%s">log in</a> to post.'), |
| 247 | esc_attr( bb_get_uri( 'bb-login.php', null, BB_URI_CONTEXT_A_HREF + BB_URI_CONTEXT_BB_USER_FORMS ) ) |
| 248 | ); |
| 249 | echo '</p>'; |
| 250 | } */ |
| 251 | }}} |
| 252 | |
| 253 | And in bb-templates/kakumei/forum.php line 9: |
| 254 | |
| 255 | {{{ |
| 256 | <th><?php _e('Topic'); ?> — <?php bb_new_topic_link(); ?></th> |
| 257 | }}} |
| 258 | |
| 259 | And in bb-templates/kakumei/front-page.php line 17: |
| 260 | |
| 261 | {{{ |
| 262 | <th><?php _e('Topic'); ?> — <?php bb_new_topic_link(); ?></th> |
| 263 | }}} |
| 264 | |
| 265 | And in bb-templates/kakumei/tag-single.php line 11: |
| 266 | |
| 267 | {{{ |
| 268 | <th><?php _e('Topic'); ?> — <?php bb_new_topic_link(); ?></th> |
| 269 | }}} |
| 270 | |