Cosmetic tweaks.
git-svn-id: http://svn.automattic.com/wordpress/trunk@1744 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2624614452
commit
c7559d198e
|
@ -153,7 +153,7 @@ $messages[3] = __('Category updated.');
|
|||
<?php endif; ?>
|
||||
|
||||
<div class="wrap">
|
||||
<h2><?php printf(__('Current Categories (<a href="%s">add new</a>)'), '#addcat') ?> </h2>
|
||||
<h2><?php printf(__('Categories (<a href="%s">add new</a>)'), '#addcat') ?> </h2>
|
||||
<table width="100%" cellpadding="3" cellspacing="3">
|
||||
<tr>
|
||||
<th scope="col"><?php _e('ID') ?></th>
|
||||
|
|
|
@ -25,6 +25,7 @@ function checkAll(form)
|
|||
//-->
|
||||
</script>
|
||||
<div class="wrap">
|
||||
<h2><?php _e('Comments'); ?></h2>
|
||||
<form name="searchform" action="" method="get">
|
||||
<fieldset>
|
||||
<legend><?php _e('Show Comments That Contain...') ?></legend>
|
||||
|
@ -65,15 +66,17 @@ if (isset($_GET['s'])) {
|
|||
if ('view' == $mode) {
|
||||
if ($comments) {
|
||||
echo '<ol class="commentlist">';
|
||||
$i = 0;
|
||||
foreach ($comments as $comment) {
|
||||
++$i; $class = '';
|
||||
$authordata = get_userdata($wpdb->get_var("SELECT post_author FROM $wpdb->posts WHERE ID = $comment->comment_post_ID"));
|
||||
$comment_status = wp_get_comment_status($comment->comment_ID);
|
||||
if ('unapproved' == $comment_status) {
|
||||
echo '<li class="unapproved">';
|
||||
} else {
|
||||
echo '<li>';
|
||||
}
|
||||
?>
|
||||
if ('unapproved' == $comment_status)
|
||||
$class .= ' unapproved';
|
||||
if ($i % 2)
|
||||
$class .= ' alternate';
|
||||
echo "<li class='$class'>";
|
||||
?>
|
||||
<p><strong><?php _e('Name:') ?></strong> <?php comment_author() ?> <?php if ($comment->comment_author_email) { ?>| <strong><?php _e('E-mail:') ?></strong> <?php comment_author_email_link() ?> <?php } if ($comment->comment_author_url) { ?> | <strong><?php _e('URI:') ?></strong> <?php comment_author_url_link() ?> <?php } ?>| <strong><?php _e('IP:') ?></strong> <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=<?php comment_author_IP() ?>"><?php comment_author_IP() ?></a></p>
|
||||
|
||||
<?php comment_text() ?>
|
||||
|
|
|
@ -134,16 +134,19 @@ if ($comments) {
|
|||
// list all comments that are waiting for approval
|
||||
$file = basename(__FILE__);
|
||||
?>
|
||||
<p><?php _e('The following comments are in the moderation queue:') ?></p>
|
||||
<h2><?php _e('Moderation Queue') ?></h2>
|
||||
<form name="approval" action="moderation.php" method="post">
|
||||
<input type="hidden" name="action" value="update" />
|
||||
<ol id="comments">
|
||||
<ol id="comments" class="commentlist">
|
||||
<?php
|
||||
$i = 0;
|
||||
foreach($comments as $comment) {
|
||||
++$i;
|
||||
$comment_date = mysql2date(get_settings("date_format") . " @ " . get_settings("time_format"), $comment->comment_date);
|
||||
$post_title = $wpdb->get_var("SELECT post_title FROM $wpdb->posts WHERE ID='$comment->comment_post_ID'");
|
||||
|
||||
echo "\n\t<li id='comment-$comment->comment_ID'>";
|
||||
if ($i % 2) $class = 'class="alternate"';
|
||||
else $class = '';
|
||||
echo "\n\t<li id='comment-$comment->comment_ID' $class>";
|
||||
?>
|
||||
<p><strong><?php _e('Name:') ?></strong> <?php comment_author() ?> <?php if ($comment->comment_author_email) { ?>| <strong><?php _e('E-mail:') ?></strong> <?php comment_author_email_link() ?> <?php } if ($comment->comment_author_email) { ?> | <strong><?php _e('URI:') ?></strong> <?php comment_author_url_link() ?> <?php } ?>| <strong><?php _e('IP:') ?></strong> <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=<?php comment_author_IP() ?>"><?php comment_author_IP() ?></a></p>
|
||||
<?php comment_text() ?>
|
||||
|
|
|
@ -145,6 +145,7 @@ textarea, input, select {
|
|||
|
||||
.commentlist li {
|
||||
border-bottom: 1px solid #369;
|
||||
padding: .3em 1em;
|
||||
}
|
||||
|
||||
.ed_button {
|
||||
|
|
Loading…
Reference in New Issue