Skip to:
Content

bbPress.org

Ticket #2637: 2637.diff

File 2637.diff, 24.9 KB (added by netweb, 11 years ago)
  • src/includes/common/template.php

     
    14161416                                'numberposts' => $r['numberposts'],
    14171417                                'orderby'     => $r['orderby'],
    14181418                                'order'       => $r['order'],
    1419                         ) );                   
     1419                        ) );
    14201420                }
    14211421
    14221422                /** Drop Down *********************************************************/
     
    24542454        // Display errors first...
    24552455        if ( !empty( $errors ) ) : ?>
    24562456
    2457                 <div class="bbp-template-notice error">
    2458                         <p>
    2459                                 <?php echo implode( "</p>\n<p>", $errors ); ?>
    2460                         </p>
     2457                <div class="bbp-template-notice error" role="alert" tabindex="-1">
     2458                        <ul>
     2459                                <li><?php echo implode( "</li>\n<li>", $errors ); ?></li>
     2460                        </ul>
    24612461                </div>
    24622462
    24632463        <?php endif;
     
    24662466        if ( !empty( $messages ) ) : ?>
    24672467
    24682468                <div class="bbp-template-notice">
    2469                         <p>
    2470                                 <?php echo implode( "</p>\n<p>", $messages ); ?>
    2471                         </p>
     2469                        <ul>
     2470                                <li><?php echo implode( "</li>\n<li>", $messages ); ?></li>
     2471                        </ul>
    24722472                </div>
    24732473
    24742474        <?php endif;
  • src/includes/forums/template.php

     
    19421942                // Parse arguments against default values
    19431943                $r = bbp_parse_args( $args, array(
    19441944                        'forum_id'  => 0,
    1945                         'before'    => '<div class="bbp-template-notice info"><p class="bbp-forum-description">',
    1946                         'after'     => '</p></div>',
     1945                        'before'    => '<div class="bbp-template-notice info"><ul><li class="bbp-forum-description">',
     1946                        'after'     => '</li></ul></div>',
    19471947                        'size'      => 14,
    19481948                        'feed'      => true
    19491949                ), 'get_single_forum_description' );
     
    22262226
    22272227                return apply_filters( 'bbp_get_form_forum_visibility', esc_attr( $forum_visibility ) );
    22282228        }
    2229        
     2229
    22302230/**
    22312231 * Output checked value of forum subscription
    22322232 *
  • src/includes/topics/template.php

     
    32893289                // Parse arguments against default values
    32903290                $r = bbp_parse_args( $args, array(
    32913291                        'topic_id'  => 0,
    3292                         'before'    => '<div class="bbp-template-notice info"><p class="bbp-topic-description">',
    3293                         'after'     => '</p></div>',
     3292                        'before'    => '<div class="bbp-template-notice info"><ul><li class="bbp-topic-description">',
     3293                        'after'     => '</li></ul></div>',
    32943294                        'size'      => 14
    32953295                ), 'get_single_topic_description' );
    32963296
  • src/includes/users/template.php

     
    11601160        if ( isset( $_GET['updated'] ) && ( bbp_is_single_user() || bbp_is_single_user_edit() ) ) : ?>
    11611161
    11621162        <div class="bbp-template-notice updated">
    1163                 <p><?php esc_html_e( 'User updated.', 'bbpress' ); ?></p>
     1163                <ul>
     1164                        <li><?php esc_html_e( 'User updated.', 'bbpress' ); ?></li>
     1165                </ul>
    11641166        </div>
    11651167
    11661168        <?php endif;
     
    11851187        if ( is_multisite() && ( bbp_is_single_user() || bbp_is_single_user_edit() ) && current_user_can( 'manage_network_options' ) && is_super_admin( bbp_get_displayed_user_id() ) ) : ?>
    11861188
    11871189        <div class="bbp-template-notice important">
    1188                 <p><?php bbp_is_user_home() || bbp_is_user_home_edit() ? esc_html_e( 'You have super admin privileges.', 'bbpress' ) : esc_html_e( 'This user has super admin privileges.', 'bbpress' ); ?></p>
     1190                <ul>
     1191                        <li><?php bbp_is_user_home() || bbp_is_user_home_edit() ? esc_html_e( 'You have super admin privileges.', 'bbpress' ) : esc_html_e( 'This user has super admin privileges.', 'bbpress' ); ?></li>
     1192                </ul>
    11891193        </div>
    11901194
    11911195<?php endif;
  • src/templates/default/bbpress/content-archive-topic.php

     
    2727
    2828        <?php if ( bbp_is_topic_tag() ) : ?>
    2929
    30                 <?php bbp_topic_tag_description( array( 'before' => '<div class="bbp-template-notice info"><p>', 'after' => '</p></div>' ) ); ?>
     30                <?php bbp_topic_tag_description( array( 'before' => '<div class="bbp-template-notice info"><ul><li>', 'after' => '</li></ul></div>' ) ); ?>
    3131
    3232        <?php endif; ?>
    3333
  • src/templates/default/bbpress/content-topic-tag-edit.php

     
    1515
    1616        <?php do_action( 'bbp_template_before_topic_tag_description' ); ?>
    1717
    18         <?php bbp_topic_tag_description( array( 'before' => '<div class="bbp-template-notice info"><p>', 'after' => '</p></div>' ) ); ?>
     18        <?php bbp_topic_tag_description( array( 'before' => '<div class="bbp-template-notice info"><ul><li>', 'after' => '</li></ul></div>' ) ); ?>
    1919
    2020        <?php do_action( 'bbp_template_after_topic_tag_description' ); ?>
    2121
  • src/templates/default/bbpress/feedback-logged-in.php

     
    1010?>
    1111
    1212<div class="bbp-template-notice info">
    13         <p><?php _e( 'You are already logged in.', 'bbpress' ); ?></p>
     13        <ul>
     14                <li><?php _e( 'You are already logged in.', 'bbpress' ); ?></li>
     15        </ul>
    1416</div>
  • src/templates/default/bbpress/feedback-no-access.php

     
    1313        <h1 class="entry-title"><?php _e( 'Private', 'bbpress' ); ?></h1>
    1414        <div class="entry-content">
    1515                <div class="bbp-template-notice info">
    16                         <p><?php _e( 'You do not have permission to view this forum.', 'bbpress' ); ?></p>
     16                        <ul>
     17                                <li><?php _e( 'You do not have permission to view this forum.', 'bbpress' ); ?></li>
     18                        </ul>
    1719                </div>
    1820        </div>
    1921</div><!-- #forum-private -->
  • src/templates/default/bbpress/feedback-no-forums.php

     
    1010?>
    1111
    1212<div class="bbp-template-notice">
    13         <p><?php _e( 'Oh bother! No forums were found here!', 'bbpress' ); ?></p>
     13        <ul>
     14                <li><?php _e( 'Oh bother! No forums were found here!', 'bbpress' ); ?></li>
     15        </ul>
    1416</div>
  • src/templates/default/bbpress/feedback-no-replies.php

     
    1010?>
    1111
    1212<div class="bbp-template-notice">
    13         <p><?php _e( 'Oh bother! No replies were found here!', 'bbpress' ); ?></p>
     13        <ul>
     14                <li><?php _e( 'Oh bother! No replies were found here!', 'bbpress' ); ?></li>
     15        </ul>
    1416</div>
  • src/templates/default/bbpress/feedback-no-search.php

     
    1010?>
    1111
    1212<div class="bbp-template-notice">
    13         <p><?php _e( 'Oh bother! No search results were found here!', 'bbpress' ); ?></p>
     13        <ul>
     14                <li><?php _e( 'Oh bother! No search results were found here!', 'bbpress' ); ?></li>
     15        </ul>
    1416</div>
  • src/templates/default/bbpress/feedback-no-topics.php

     
    1010?>
    1111
    1212<div class="bbp-template-notice">
    13         <p><?php _e( 'Oh bother! No topics were found here!', 'bbpress' ); ?></p>
     13        <ul>
     14                <li><?php _e( 'Oh bother! No topics were found here!', 'bbpress' ); ?></li>
     15        </ul>
    1416</div>
  • src/templates/default/bbpress/form-forum.php

     
    4444                                <?php if ( !bbp_is_forum_edit() && bbp_is_forum_closed() ) : ?>
    4545
    4646                                        <div class="bbp-template-notice">
    47                                                 <p><?php _e( 'This forum is closed to new content, however your account still allows you to do so.', 'bbpress' ); ?></p>
     47                                                <ul>
     48                                                        <li><?php _e( 'This forum is closed to new content, however your account still allows you to do so.', 'bbpress' ); ?></li>
     49                                                </ul>
    4850                                        </div>
    4951
    5052                                <?php endif; ?>
     
    5254                                <?php if ( current_user_can( 'unfiltered_html' ) ) : ?>
    5355
    5456                                        <div class="bbp-template-notice">
    55                                                 <p><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></p>
     57                                                <ul>
     58                                                        <li><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></li>
     59                                                </ul>
    5660                                        </div>
    5761
    5862                                <?php endif; ?>
     
    6367
    6468                                        <?php do_action( 'bbp_theme_before_forum_form_title' ); ?>
    6569
    66                                         <p>
    67                                                 <label for="bbp_forum_title"><?php printf( __( 'Forum Name (Maximum Length: %d):', 'bbpress' ), bbp_get_title_max_length() ); ?></label><br />
    68                                                 <input type="text" id="bbp_forum_title" value="<?php bbp_form_forum_title(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_forum_title" maxlength="<?php bbp_title_max_length(); ?>" />
    69                                         </p>
     70                                        <ul>
     71                                                <li>
     72                                                        <label for="bbp_forum_title"><?php printf( __( 'Forum Name (Maximum Length: %d):', 'bbpress' ), bbp_get_title_max_length() ); ?></label><br />
     73                                                        <input type="text" id="bbp_forum_title" value="<?php bbp_form_forum_title(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_forum_title" maxlength="<?php bbp_title_max_length(); ?>" />
     74                                                </li>
     75                                        </ul>
    7076
    7177                                        <?php do_action( 'bbp_theme_after_forum_form_title' ); ?>
    7278
     
    158164
    159165        <div id="no-forum-<?php bbp_forum_id(); ?>" class="bbp-no-forum">
    160166                <div class="bbp-template-notice">
    161                         <p><?php printf( __( 'The forum &#8216;%s&#8217; is closed to new content.', 'bbpress' ), bbp_get_forum_title() ); ?></p>
     167                        <ul>
     168                                <li><?php printf( __( 'The forum &#8216;%s&#8217; is closed to new content.', 'bbpress' ), bbp_get_forum_title() ); ?></li>
     169                        </ul>
    162170                </div>
    163171        </div>
    164172
     
    166174
    167175        <div id="no-forum-<?php bbp_forum_id(); ?>" class="bbp-no-forum">
    168176                <div class="bbp-template-notice">
    169                         <p><?php is_user_logged_in() ? _e( 'You cannot create new forums.', 'bbpress' ) : _e( 'You must be logged in to create new forums.', 'bbpress' ); ?></p>
     177                        <ul>
     178                                <li><?php is_user_logged_in() ? _e( 'You cannot create new forums.', 'bbpress' ) : _e( 'You must be logged in to create new forums.', 'bbpress' ); ?></li>
     179                        </ul>
    170180                </div>
    171181        </div>
    172182
  • src/templates/default/bbpress/form-reply-move.php

     
    2626                                        <div>
    2727
    2828                                                <div class="bbp-template-notice info">
    29                                                         <p><?php _e( 'You can either make this reply a new topic with a new title, or merge it into an existing topic.', 'bbpress' ); ?></p>
     29                                                        <ul>
     30                                                                <li><?php _e( 'You can either make this reply a new topic with a new title, or merge it into an existing topic.', 'bbpress' ); ?></li>
     31                                                        </ul>
    3032                                                </div>
    3133
    3234                                                <div class="bbp-template-notice">
    33                                                         <p><?php _e( 'If you choose an existing topic, replies will be ordered by the time and date they were created.', 'bbpress' ); ?></p>
     35                                                        <ul>
     36                                                                <li><?php _e( 'If you choose an existing topic, replies will be ordered by the time and date they were created.', 'bbpress' ); ?></li>
     37                                                        </ul>
    3438                                                </div>
    3539
    3640                                                <fieldset class="bbp-form">
     
    6468
    6569                                                </fieldset>
    6670
    67                                                 <div class="bbp-template-notice error">
    68                                                         <p><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'bbpress' ); ?></p>
     71                                                <div class="bbp-template-notice error" role="alert" tabindex="-1">
     72                                                        <ul>
     73                                                                <li><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'bbpress' ); ?></li>
     74                                                        </ul>
    6975                                                </div>
    7076
    7177                                                <div class="bbp-submit-wrapper">
  • src/templates/default/bbpress/form-reply.php

     
    3333                                <?php if ( !bbp_is_topic_open() && !bbp_is_reply_edit() ) : ?>
    3434
    3535                                        <div class="bbp-template-notice">
    36                                                 <p><?php _e( 'This topic is marked as closed to new replies, however your posting capabilities still allow you to do so.', 'bbpress' ); ?></p>
     36                                                <ul>
     37                                                        <li><?php _e( 'This topic is marked as closed to new replies, however your posting capabilities still allow you to do so.', 'bbpress' ); ?></li>
     38                                                </ul>
    3739                                        </div>
    3840
    3941                                <?php endif; ?>
     
    4143                                <?php if ( current_user_can( 'unfiltered_html' ) ) : ?>
    4244
    4345                                        <div class="bbp-template-notice">
    44                                                 <p><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></p>
     46                                                <ul>
     47                                                        <li><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></li>
     48                                                </ul>
    4549                                        </div>
    4650
    4751                                <?php endif; ?>
     
    172176
    173177        <div id="no-reply-<?php bbp_topic_id(); ?>" class="bbp-no-reply">
    174178                <div class="bbp-template-notice">
    175                         <p><?php printf( __( 'The topic &#8216;%s&#8217; is closed to new replies.', 'bbpress' ), bbp_get_topic_title() ); ?></p>
     179                        <ul>
     180                                <li><?php printf( __( 'The topic &#8216;%s&#8217; is closed to new replies.', 'bbpress' ), bbp_get_topic_title() ); ?></li>
     181                        </ul>
    176182                </div>
    177183        </div>
    178184
     
    180186
    181187        <div id="no-reply-<?php bbp_topic_id(); ?>" class="bbp-no-reply">
    182188                <div class="bbp-template-notice">
    183                         <p><?php printf( __( 'The forum &#8216;%s&#8217; is closed to new topics and replies.', 'bbpress' ), bbp_get_forum_title( bbp_get_topic_forum_id() ) ); ?></p>
     189                        <ul>
     190                                <li><?php printf( __( 'The forum &#8216;%s&#8217; is closed to new topics and replies.', 'bbpress' ), bbp_get_forum_title( bbp_get_topic_forum_id() ) ); ?></li>
     191                        </ul>
    184192                </div>
    185193        </div>
    186194
     
    188196
    189197        <div id="no-reply-<?php bbp_topic_id(); ?>" class="bbp-no-reply">
    190198                <div class="bbp-template-notice">
    191                         <p><?php is_user_logged_in() ? _e( 'You cannot reply to this topic.', 'bbpress' ) : _e( 'You must be logged in to reply to this topic.', 'bbpress' ); ?></p>
     199                        <ul>
     200                                <li><?php is_user_logged_in() ? _e( 'You cannot reply to this topic.', 'bbpress' ) : _e( 'You must be logged in to reply to this topic.', 'bbpress' ); ?></li>
     201                        </ul>
    192202                </div>
    193203        </div>
    194204
  • src/templates/default/bbpress/form-topic-merge.php

     
    2626                                        <div>
    2727
    2828                                                <div class="bbp-template-notice info">
    29                                                         <p><?php _e( 'Select the topic to merge this one into. The destination topic will remain the lead topic, and this one will change into a reply.', 'bbpress' ); ?></p>
    30                                                         <p><?php _e( 'To keep this topic as the lead, go to the other topic and use the merge tool from there instead.', 'bbpress' ); ?></p>
     29                                                        <ul>
     30                                                                <li><?php _e( 'Select the topic to merge this one into. The destination topic will remain the lead topic, and this one will change into a reply.', 'bbpress' ); ?></li>
     31                                                                <li><?php _e( 'To keep this topic as the lead, go to the other topic and use the merge tool from there instead.', 'bbpress' ); ?></li>
     32                                                        </ul>
    3133                                                </div>
    3234
    3335                                                <div class="bbp-template-notice">
    34                                                         <p><?php _e( 'All replies within both the topics will be merged chronologically. The order of the merged replies is based on the time they were posted. If the destination topic was created after this one, its post date will be updated to a second earlier than this one.', 'bbpress' ); ?></p>
     36                                                        <ul>
     37                                                                <li><?php _e( 'All replies within both the topics will be merged chronologically. The order of the merged replies is based on the time they were posted. If the destination topic was created after this one, its post date will be updated to a second earlier than this one.', 'bbpress' ); ?></li>
     38                                                        </ul>
    3539                                                </div>
    3640
    3741                                                <fieldset class="bbp-form">
     
    8690                                                        </div>
    8791                                                </fieldset>
    8892
    89                                                 <div class="bbp-template-notice error">
    90                                                         <p><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'bbpress' ); ?></p>
     93                                                <div class="bbp-template-notice error" role="alert" tabindex="-1">
     94                                                        <ul>
     95                                                                <li><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'bbpress' ); ?></li>
     96                                                        </ul>
    9197                                                </div>
    9298
    9399                                                <div class="bbp-submit-wrapper">
  • src/templates/default/bbpress/form-topic-split.php

     
    2626                                        <div>
    2727
    2828                                                <div class="bbp-template-notice info">
    29                                                         <p><?php _e( 'When you split a topic, you are slicing it in half starting with the reply you just selected. Choose to use that reply as a new topic with a new title, or merge those replies into an existing topic.', 'bbpress' ); ?></p>
     29                                                        <ul>
     30                                                                <li><?php _e( 'When you split a topic, you are slicing it in half starting with the reply you just selected. Choose to use that reply as a new topic with a new title, or merge those replies into an existing topic.', 'bbpress' ); ?></li>
     31                                                        </ul>
    3032                                                </div>
    3133
    3234                                                <div class="bbp-template-notice">
    33                                                         <p><?php _e( 'If you use the existing topic option, replies within both topics will be merged chronologically. The order of the merged replies is based on the time and date they were posted.', 'bbpress' ); ?></p>
     35                                                        <ul>
     36                                                                <li><?php _e( 'If you use the existing topic option, replies within both topics will be merged chronologically. The order of the merged replies is based on the time and date they were posted.', 'bbpress' ); ?></li>
     37                                                        </ul>
    3438                                                </div>
    3539
    3640                                                <fieldset class="bbp-form">
     
    9094                                                        </div>
    9195                                                </fieldset>
    9296
    93                                                 <div class="bbp-template-notice error">
    94                                                         <p><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'bbpress' ); ?></p>
     97                                                <div class="bbp-template-notice error" role="alert" tabindex="-1">
     98                                                        <ul>
     99                                                                <li><?php _e( '<strong>WARNING:</strong> This process cannot be undone.', 'bbpress' ); ?></li>
     100                                                        </ul>
    95101                                                </div>
    96102
    97103                                                <div class="bbp-submit-wrapper">
  • src/templates/default/bbpress/form-topic-tag.php

     
    2222                                <legend><?php _e( 'Rename', 'bbpress' ); ?></legend>
    2323
    2424                                <div class="bbp-template-notice info">
    25                                         <p><?php _e( 'Leave the slug empty to have one automatically generated.', 'bbpress' ); ?></p>
     25                                        <ul>
     26                                                <li><?php _e( 'Leave the slug empty to have one automatically generated.', 'bbpress' ); ?></li>
     27                                        </ul>
    2628                                </div>
    2729
    2830                                <div class="bbp-template-notice">
    29                                         <p><?php _e( 'Changing the slug affects its permalink. Any links to the old slug will stop working.', 'bbpress' ); ?></p>
     31                                        <ul>
     32                                                <li><?php _e( 'Changing the slug affects its permalink. Any links to the old slug will stop working.', 'bbpress' ); ?></li>
     33                                        </ul>
    3034                                </div>
    3135
    3236                                <form id="rename_tag" name="rename_tag" method="post" action="<?php the_permalink(); ?>">
     
    6468                                <legend><?php _e( 'Merge', 'bbpress' ); ?></legend>
    6569
    6670                                <div class="bbp-template-notice">
    67                                         <p><?php _e( 'Merging tags together cannot be undone.', 'bbpress' ); ?></p>
     71                                        <ul>
     72                                                <li><?php _e( 'Merging tags together cannot be undone.', 'bbpress' ); ?></li>
     73                                        </ul>
    6874                                </div>
    6975
    7076                                <form id="merge_tag" name="merge_tag" method="post" action="<?php the_permalink(); ?>">
     
    9399                                        <legend><?php _e( 'Delete', 'bbpress' ); ?></legend>
    94100
    95101                                        <div class="bbp-template-notice info">
    96                                                 <p><?php _e( 'This does not delete your topics. Only the tag itself is deleted.', 'bbpress' ); ?></p>
     102                                                <ul>
     103                                                        <li><?php _e( 'This does not delete your topics. Only the tag itself is deleted.', 'bbpress' ); ?></li>
     104                                                </ul>
    97105                                        </div>
    98106                                        <div class="bbp-template-notice">
    99                                                 <p><?php _e( 'Deleting a tag cannot be undone.', 'bbpress' ); ?></p>
    100                                                 <p><?php _e( 'Any links to this tag will no longer function.', 'bbpress' ); ?></p>
     107                                                <ul>
     108                                                        <li><?php _e( 'Deleting a tag cannot be undone.', 'bbpress' ); ?></li>
     109                                                        <li><?php _e( 'Any links to this tag will no longer function.', 'bbpress' ); ?></li>
     110                                                </ul>
    101111                                        </div>
    102112
    103113                                        <form id="delete_tag" name="delete_tag" method="post" action="<?php the_permalink(); ?>">
  • src/templates/default/bbpress/form-topic.php

     
    5050                                <?php if ( !bbp_is_topic_edit() && bbp_is_forum_closed() ) : ?>
    5151
    5252                                        <div class="bbp-template-notice">
    53                                                 <p><?php _e( 'This forum is marked as closed to new topics, however your posting capabilities still allow you to do so.', 'bbpress' ); ?></p>
     53                                                <ul>
     54                                                        <li><?php _e( 'This forum is marked as closed to new topics, however your posting capabilities still allow you to do so.', 'bbpress' ); ?></li>
     55                                                </ul>
    5456                                        </div>
    5557
    5658                                <?php endif; ?>
     
    5860                                <?php if ( current_user_can( 'unfiltered_html' ) ) : ?>
    5961
    6062                                        <div class="bbp-template-notice">
    61                                                 <p><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></p>
     63                                                <ul>
     64                                                        <li><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></li>
     65                                                </ul>
    6266                                        </div>
    6367
    6468                                <?php endif; ?>
     
    223227
    224228        <div id="no-topic-<?php bbp_topic_id(); ?>" class="bbp-no-topic">
    225229                <div class="bbp-template-notice">
    226                         <p><?php printf( __( 'The forum &#8216;%s&#8217; is closed to new topics and replies.', 'bbpress' ), bbp_get_forum_title() ); ?></p>
     230                        <ul>
     231                                <li><?php printf( __( 'The forum &#8216;%s&#8217; is closed to new topics and replies.', 'bbpress' ), bbp_get_forum_title() ); ?></li>
     232                        </ul>
    227233                </div>
    228234        </div>
    229235
     
    231237
    232238        <div id="no-topic-<?php bbp_topic_id(); ?>" class="bbp-no-topic">
    233239                <div class="bbp-template-notice">
    234                         <p><?php is_user_logged_in() ? _e( 'You cannot create new topics.', 'bbpress' ) : _e( 'You must be logged in to create new topics.', 'bbpress' ); ?></p>
     240                        <ul>
     241                                <li><?php is_user_logged_in() ? _e( 'You cannot create new topics.', 'bbpress' ) : _e( 'You must be logged in to create new topics.', 'bbpress' ); ?></li>
     242                        </ul>
    235243                </div>
    236244        </div>
    237245
  • src/templates/default/bbpress/form-user-register.php

     
    1616                <?php do_action( 'bbp_template_before_register_fields' ); ?>
    1717
    1818                <div class="bbp-template-notice">
    19                         <p><?php _e( 'Your username must be unique, and cannot be changed later.', 'bbpress' ) ?></p>
    20                         <p><?php _e( 'We use your email address to email you a secure password and verify your account.', 'bbpress' ) ?></p>
     19                        <ul>
     20                                <li><?php _e( 'Your username must be unique, and cannot be changed later.', 'bbpress' ) ?></li>
     21                                <li><?php _e( 'We use your email address to email you a secure password and verify your account.', 'bbpress' ) ?></li>
     22                        </ul>
    2123                </div>
    2224
    2325                <div class="bbp-username">
  • src/templates/default/css/bbpress.css

     
    883883        div.bbp-template-notice.warning a {
    884884                color: #c00;
    885885        }
    886         div.bbp-template-notice p {
     886        div.bbp-template-notice li {
    887887                margin: 0.5em 0 6px 0 !important;
    888888                padding: 2px;
    889889                font-size: 12px;