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/common/template.php

    r5561 r5563  
    14691469                'orderby'     => $r['orderby'],
    14701470                'order'       => $r['order'],
    1471             ) );           
     1471            ) );
    14721472        }
    14731473
     
    25082508    if ( !empty( $errors ) ) : ?>
    25092509
    2510         <div class="bbp-template-notice error">
    2511             <p>
    2512                 <?php echo implode( "</p>\n<p>", $errors ); ?>
    2513             </p>
     2510        <div class="bbp-template-notice error" role="alert" tabindex="-1">
     2511            <ul>
     2512                <li><?php echo implode( "</li>\n<li>", $errors ); ?></li>
     2513            </ul>
    25142514        </div>
    25152515
     
    25202520
    25212521        <div class="bbp-template-notice">
    2522             <p>
    2523                 <?php echo implode( "</p>\n<p>", $messages ); ?>
    2524             </p>
     2522            <ul>
     2523                <li><?php echo implode( "</li>\n<li>", $messages ); ?></li>
     2524            </ul>
    25252525        </div>
    25262526
Note: See TracChangeset for help on using the changeset viewer.