A few more stylings -- options/settings still need a lot more work.

git-svn-id: https://develop.svn.wordpress.org/trunk@6475 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg
2007-12-23 10:05:37 +00:00
parent a412f1411d
commit 61aee2be92
7 changed files with 43 additions and 58 deletions
+5 -5
View File
@@ -91,25 +91,25 @@ if ( 'spam' == $_GET['dt'] ) {
<input type='hidden' name='noredir' value='1' />
</form>
<table class="editform" cellpadding="5">
<table class="niceblue" cellpadding="5">
<tr class="alt">
<th scope="row"><?php _e('Author:'); ?></th>
<th scope="row"><?php _e('Author'); ?></th>
<td><?php echo $comment->comment_author; ?></td>
</tr>
<?php if ( $comment->comment_author_email ) { ?>
<tr>
<th scope="row"><?php _e('E-mail:'); ?></th>
<th scope="row"><?php _e('E-mail'); ?></th>
<td><?php echo $comment->comment_author_email; ?></td>
</tr>
<?php } ?>
<?php if ( $comment->comment_author_url ) { ?>
<tr>
<th scope="row"><?php _e('URL:'); ?></th>
<th scope="row"><?php _e('URL'); ?></th>
<td><a href='<?php echo $comment->comment_author_url; ?>'><?php echo $comment->comment_author_url; ?></a></td>
</tr>
<?php } ?>
<tr>
<th scope="row" valign="top"><?php _e('Comment:'); ?></th>
<th scope="row" valign="top"><?php _e('Comment'); ?></th>
<td><?php echo $comment->comment_content; ?></td>
</tr>
</table>