Ticket #10108: 10108.diff

File 10108.diff, 4.4 KB (added by Denis-de-Bernardy, 3 years ago)
  • wp-includes/general-template.php

     
    121121                return; 
    122122        } 
    123123 
    124         $form = '<form role="search" method="get" id="searchform" action="' . get_option('home') . '/" > 
     124        $form = '<form method="get" id="searchform" action="' . get_option('home') . '/" > 
    125125        <div><label class="screen-reader-text" for="s">' . __('Search for:') . '</label> 
    126126        <input type="text" value="' . esc_attr(apply_filters('the_search_query', get_search_query())) . '" name="s" id="s" /> 
    127127        <input type="submit" id="searchsubmit" value="'. esc_attr__('Search') .'" /> 
  • wp-content/themes/default/footer.php

     
    66?> 
    77 
    88<hr /> 
    9 <div id="footer" role="contentinfo"> 
     9<div id="footer"> 
    1010<!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. --> 
    1111        <p> 
    1212                <?php bloginfo('name'); ?> is proudly powered by 
  • wp-content/themes/default/search.php

     
    66 
    77get_header(); ?> 
    88 
    9         <div id="content" class="narrowcolumn" role="main"> 
     9        <div id="content" class="narrowcolumn"> 
    1010 
    1111        <?php if (have_posts()) : ?> 
    1212 
  • wp-content/themes/default/index.php

     
    66 
    77get_header(); ?> 
    88 
    9         <div id="content" class="narrowcolumn" role="main"> 
     9        <div id="content" class="narrowcolumn"> 
    1010 
    1111        <?php if (have_posts()) : ?> 
    1212 
  • wp-content/themes/default/sidebar.php

     
    44 * @subpackage Default_Theme 
    55 */ 
    66?> 
    7         <div id="sidebar" role="complementary"> 
     7        <div id="sidebar"> 
    88                <ul> 
    99                        <?php   /* Widgetized sidebar, if you have the plugin installed. */ 
    1010                                        if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> 
     
    5050                        </li> 
    5151                <?php }?> 
    5252                </ul> 
    53                 <ul role="navigation"> 
     53                <ul> 
    5454                        <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?> 
    5555 
    5656                        <li><h2>Archives</h2> 
  • wp-content/themes/default/page.php

     
    66 
    77get_header(); ?> 
    88 
    9         <div id="content" class="narrowcolumn" role="main"> 
     9        <div id="content" class="narrowcolumn"> 
    1010 
    1111                <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 
    1212                <div class="post" id="post-<?php the_ID(); ?>"> 
  • wp-content/themes/default/archive.php

     
    77get_header(); 
    88?> 
    99 
    10         <div id="content" class="narrowcolumn" role="main"> 
     10        <div id="content" class="narrowcolumn"> 
    1111 
    1212                <?php if (have_posts()) : ?> 
    1313 
  • wp-content/themes/default/single.php

     
    77get_header(); 
    88?> 
    99 
    10         <div id="content" class="widecolumn" role="main"> 
     10        <div id="content" class="widecolumn"> 
    1111 
    1212        <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 
    1313 
  • wp-content/themes/default/header.php

     
    3636<div id="page"> 
    3737 
    3838 
    39 <div id="header" role="banner"> 
     39<div id="header"> 
    4040        <div id="headerimg"> 
    4141                <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1> 
    4242                <div class="description"><?php bloginfo('description'); ?></div>