Changeset 11711
- Timestamp:
- 07/14/2009 07:59:52 AM (16 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
-
includes/template.php (modified) (1 diff)
-
wp-admin.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r11709 r11711 2124 2124 printf(__('Submitted on <a href="%1$s">%2$s at %3$s</a>'), get_comment_link($comment->comment_ID), get_comment_date(__('Y/m/d')), get_comment_date(__('g:ia'))); 2125 2125 echo '</div>'; 2126 comment_text(); ?> 2126 comment_text(); 2127 if ( $user_can ) { ?> 2127 2128 <div id="inline-<?php echo $comment->comment_ID; ?>" class="hidden"> 2128 <textarea class="comment" rows=" 3" cols="10"><?php echo $comment->comment_content; ?></textarea>2129 <div class="author-email"><?php if ( $user_can )echo esc_attr( $comment->comment_author_email ); ?></div>2130 <div class="author"><?php if ( $user_can )echo esc_attr( $comment->comment_author ); ?></div>2129 <textarea class="comment" rows="1" cols="1"><?php echo htmlspecialchars($comment->comment_content, ENT_QUOTES); ?></textarea> 2130 <div class="author-email"><?php echo esc_attr( $comment->comment_author_email ); ?></div> 2131 <div class="author"><?php echo esc_attr( $comment->comment_author ); ?></div> 2131 2132 <div class="author-url"><?php echo esc_attr( $comment->comment_author_url ); ?></div> 2132 2133 <div class="comment_status"><?php echo $comment->comment_approved; ?></div> 2133 2134 </div> 2134 2135 <?php 2136 } 2135 2137 $actions = array(); 2136 2138 -
trunk/wp-admin/wp-admin.css
r11676 r11711 733 733 } 734 734 735 . column-comment p {735 .widefat .column-comment p { 736 736 margin: 0.6em 0; 737 737 }
Note: See TracChangeset
for help on using the changeset viewer.