Skip to:
Content

bbPress.org


Ignore:
Timestamp:
11/11/2014 05:25:09 PM (10 years ago)
Author:
johnjamesjacoby
Message:

Convert template notices from paragraph tags to unordered lists.

Improves accessibility by hinting there may be several notices on the page.

Props Karl Groves, netweb. FIxes #2637.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/users/template.php

    r5475 r5563  
    11741174
    11751175    <div class="bbp-template-notice updated">
    1176         <p><?php esc_html_e( 'User updated.', 'bbpress' ); ?></p>
     1176        <ul>
     1177            <li><?php esc_html_e( 'User updated.', 'bbpress' ); ?></li>
     1178        </ul>
    11771179    </div>
    11781180
     
    11991201
    12001202    <div class="bbp-template-notice important">
    1201         <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>
     1203        <ul>
     1204            <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>
     1205        </ul>
    12021206    </div>
    12031207
Note: See TracChangeset for help on using the changeset viewer.