Changeset 5799
- Timestamp:
- 07/15/2007 05:48:01 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-post-rows.php
r5751 r5799 16 16 add_filter('the_title','wp_specialchars'); 17 17 $class = ('alternate' == $class) ? '' : 'alternate'; 18 global $current_user; 19 $post_owner = ( $current_user->ID == $post->post_author ? 'self' : 'other' ); 18 20 ?> 19 <tr id='post-<?php echo $id; ?>' class='<?php echo $class; ?>'>21 <tr id='post-<?php echo $id; ?>' class='<?php echo trim( $class . ' author-' . $post_owner . ' status-' . $post->post_status ); ?>'> 20 22 21 23 <?php
Note: See TracChangeset
for help on using the changeset viewer.