Changeset 6475 for trunk/wp-admin/comment.php
- Timestamp:
- 12/23/2007 10:05:37 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/comment.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/comment.php
r6371 r6475 92 92 </form> 93 93 94 <table class=" editform" cellpadding="5">94 <table class="niceblue" cellpadding="5"> 95 95 <tr class="alt"> 96 <th scope="row"><?php _e('Author :'); ?></th>96 <th scope="row"><?php _e('Author'); ?></th> 97 97 <td><?php echo $comment->comment_author; ?></td> 98 98 </tr> 99 99 <?php if ( $comment->comment_author_email ) { ?> 100 100 <tr> 101 <th scope="row"><?php _e('E-mail :'); ?></th>101 <th scope="row"><?php _e('E-mail'); ?></th> 102 102 <td><?php echo $comment->comment_author_email; ?></td> 103 103 </tr> … … 105 105 <?php if ( $comment->comment_author_url ) { ?> 106 106 <tr> 107 <th scope="row"><?php _e('URL :'); ?></th>107 <th scope="row"><?php _e('URL'); ?></th> 108 108 <td><a href='<?php echo $comment->comment_author_url; ?>'><?php echo $comment->comment_author_url; ?></a></td> 109 109 </tr> 110 110 <?php } ?> 111 111 <tr> 112 <th scope="row" valign="top"><?php _e('Comment :'); ?></th>112 <th scope="row" valign="top"><?php _e('Comment'); ?></th> 113 113 <td><?php echo $comment->comment_content; ?></td> 114 114 </tr>
Note: See TracChangeset
for help on using the changeset viewer.