Changeset 15280
- Timestamp:
- 06/19/2010 05:48:30 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r15278 r15280 1342 1342 $attributes = 'class="post-title column-title"' . $style; 1343 1343 ?> 1344 <td <?php echo $attributes l ?>><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 “%s”'), $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 “%s”'), $title)); ?>"><?php echo $title; ?></a><?php } else { echo $title; }; _post_states($post); ?></strong> 1345 1345 <?php 1346 1346 if ( 'excerpt' == $mode ) … … 2431 2431 <thead> 2432 2432 <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> 2434 2434 <th><label for="metavalue"><?php _e( 'Value' ); ?></label></th> 2435 2435 </tr> … … 3273 3273 <label class="screen-reader-text" for="find-posts-input"><?php _e( 'Search' ); ?></label> 3274 3274 <input type="text" id="find-posts-input" name="ps" value="" /> 3275 <input type="button" on Click="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 /> 3276 3276 3277 3277 <?php … … 3289 3289 </div> 3290 3290 <div class="find-box-buttons"> 3291 <input type="button" class="button alignleft" on Click="findPosts.close();" value="<?php esc_attr_e('Close'); ?>" />3291 <input type="button" class="button alignleft" onclick="findPosts.close();" value="<?php esc_attr_e('Close'); ?>" /> 3292 3292 <input id="find-posts-submit" type="submit" class="button-primary alignright" value="<?php esc_attr_e('Select'); ?>" /> 3293 3293 </div>
Note: See TracChangeset
for help on using the changeset viewer.