Skip to:
Content

bbPress.org


Ignore:
Timestamp:
11/11/2014 05:25:09 PM (11 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/templates/default/bbpress/form-user-register.php

    r5561 r5563  
    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
Note: See TracChangeset for help on using the changeset viewer.