Make WordPress Core


Ignore:
Timestamp:
05/12/2010 07:29:35 PM (14 years ago)
Author:
nacin
Message:

Don't nest p tag inside the opening table tag in the new right now box. fixes IE display, and validation. fixes #12202, props ocean90.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/dashboard.php

    r14581 r14582  
    216216    $num_comm = wp_count_comments( );
    217217
    218     echo "\n\t".'<div class="table table_content">'."\n\t".'<table>';
    219     echo "\n\t".'<p class="sub">' . __('Content') . '</p>';
     218    echo "\n\t".'<div class="table table_content">';
     219    echo "\n\t".'<p class="sub">' . __('Content') . '</p>'."\n\t".'<table>';
    220220    echo "\n\t".'<tr class="first">';
    221221
     
    287287
    288288
    289     echo "\n\t".'<div class="table table_discussion">'."\n\t".'<table>';
    290     echo "\n\t".'<p class="sub">' . __('Discussion') . '</p>';
     289    echo "\n\t".'<div class="table table_discussion">';
     290    echo "\n\t".'<p class="sub">' . __('Discussion') . '</p>'."\n\t".'<table>';
    291291    echo "\n\t".'<tr class="first">';
    292292
Note: See TracChangeset for help on using the changeset viewer.