Make WordPress Core

Changeset 15280


Ignore:
Timestamp:
06/19/2010 05:48:30 AM (14 years ago)
Author:
dd32
Message:

Fix typos in r15278. Caused by fat fingers.

File:
1 edited

Legend:

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

    r15278 r15280  
    13421342            $attributes = 'class="post-title column-title"' . $style;
    13431343        ?>
    1344         <td <?php echo $attributesl ?>><strong><?php if ( current_user_can($post_type_object->cap->edit_post, $post->ID) && $post->post_status != 'trash' ) { ?><a class="row-title" href="<?php echo $edit_link; ?>" title="<?php echo esc_attr(sprintf(__('Edit &#8220;%s&#8221;'), $title)); ?>"><?php echo $titlel ?></a><?php } else { echo $title; }; _post_states($post); ?></strong>
     1344        <td <?php echo $attributes; ?>><strong><?php if ( current_user_can($post_type_object->cap->edit_post, $post->ID) && $post->post_status != 'trash' ) { ?><a class="row-title" href="<?php echo $edit_link; ?>" title="<?php echo esc_attr(sprintf(__('Edit &#8220;%s&#8221;'), $title)); ?>"><?php echo $title; ?></a><?php } else { echo $title; }; _post_states($post); ?></strong>
    13451345        <?php
    13461346            if ( 'excerpt' == $mode )
     
    24312431<thead>
    24322432<tr>
    2433 <th class="left"><label for="metakeyselect"><?php _e( 'Name' ) ?></label></th>
     2433<th class="left"><label for="metakeyselect"><?php _e( 'Name' ); ?></label></th>
    24342434<th><label for="metavalue"><?php _e( 'Value' ); ?></label></th>
    24352435</tr>
     
    32733273                <label class="screen-reader-text" for="find-posts-input"><?php _e( 'Search' ); ?></label>
    32743274                <input type="text" id="find-posts-input" name="ps" value="" />
    3275                 <input type="button" onClick="findPosts.send();" value="<?php esc_attr_e( 'Search' ); ?>" class="button" /><br />
     3275                <input type="button" onclick="findPosts.send();" value="<?php esc_attr_e( 'Search' ); ?>" class="button" /><br />
    32763276
    32773277                <?php
     
    32893289        </div>
    32903290        <div class="find-box-buttons">
    3291             <input type="button" class="button alignleft" onClick="findPosts.close();" value="<?php esc_attr_e('Close'); ?>" />
     3291            <input type="button" class="button alignleft" onclick="findPosts.close();" value="<?php esc_attr_e('Close'); ?>" />
    32923292            <input id="find-posts-submit" type="submit" class="button-primary alignright" value="<?php esc_attr_e('Select'); ?>" />
    32933293        </div>
Note: See TracChangeset for help on using the changeset viewer.