Changeset 7510

Show
Ignore:
Timestamp:
03/25/08 07:33:57 (7 months ago)
Author:
markjaquith
Message:

Check the Alignment: None box by default for media insertion. XHTML validation. see #6379

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/includes/media.php

    r7496 r7510  
    472472            'input' => 'html', 
    473473            'html'  => " 
    474                 <input type='radio' name='attachments[$post->ID][align]' id='image-align-none-$post->ID' value='none' /> 
     474                <input type='radio' name='attachments[$post->ID][align]' id='image-align-none-$post->ID' value='none' checked='checked' /> 
    475475                <label for='image-align-none-$post->ID' class='align image-align-none-label'>" . __('None') . "</label> 
    476476                <input type='radio' name='attachments[$post->ID][align]' id='image-align-left-$post->ID' value='left' /> 
     
    11051105            <th valign="top" scope="row" class="label"><label for="insertonly[align]">' . __('Alignment') . '</label></th> 
    11061106            <td class="field"> 
    1107                 <input name="insertonly[align]" id="image-align-none-0" value="none" type="radio"
     1107                <input name="insertonly[align]" id="image-align-none-0" value="none" type="radio" checked="checked" /
    11081108                <label for="image-align-none-0" class="align image-align-none-label">' . __('None') . '</label> 
    1109                 <input name="insertonly[align]" id="image-align-left-0" value="left" type="radio"
     1109                <input name="insertonly[align]" id="image-align-left-0" value="left" type="radio" /
    11101110                <label for="image-align-left-0" class="align image-align-left-label">' . __('Left') . '</label> 
    1111                 <input name="insertonly[align]" id="image-align-center-0" value="center" type="radio"
     1111                <input name="insertonly[align]" id="image-align-center-0" value="center" type="radio" /
    11121112                <label for="image-align-center-0" class="align image-align-center-label">' . __('Center') . '</label> 
    1113                 <input name="insertonly[align]" id="image-align-right-0" value="right" type="radio"
     1113                <input name="insertonly[align]" id="image-align-right-0" value="right" type="radio" /
    11141114                <label for="image-align-right-0" class="align image-align-right-label">' . __('Right') . '</label> 
    11151115            </td>