summaryrefslogtreecommitdiff
path: root/modules/moderation.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-04-04 12:54:10 +0000
committerDries Buytaert <dries@buytaert.net>2001-04-04 12:54:10 +0000
commit8d249c5f289f382e214297fda1bf6eec6b3961bd (patch)
treed6ab777a53b163a791aaff201349222d5495de29 /modules/moderation.module
parent97dd9e1cb4f4207470cb421f0f3a43bd2f4872b5 (diff)
downloadbrdo-8d249c5f289f382e214297fda1bf6eec6b3961bd.tar.gz
brdo-8d249c5f289f382e214297fda1bf6eec6b3961bd.tar.bz2
Last night's updates:
- improved "track drop.org": it has now 2 boxes, one for "track comments" and one for "track nodes" - various small improvements to the book module based on the feedback we got. - fixed typo in moderation module - ...
Diffstat (limited to 'modules/moderation.module')
-rw-r--r--modules/moderation.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/moderation.module b/modules/moderation.module
index 3b84d487c..b322f2ed4 100644
--- a/modules/moderation.module
+++ b/modules/moderation.module
@@ -54,7 +54,7 @@ function moderation_overview() {
$result = db_query("SELECT n.*, u.userid FROM node n LEFT JOIN users u ON n.author = u.id WHERE n.status = '$status[queued]'");
$content .= "<TABLE BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"4\">\n";
- $content .= " <TR BGCOLOR=\"$bgcolor1\"><TH>". t("Subject") ."</TH><TH>". t("Author") ."</TH><TH>". t("Type") ."</TH><TH>". t("Score") ."</TH></TR>\n";
+ $content .= " <TR><TH>". t("Subject") ."</TH><TH>". t("Author") ."</TH><TH>". t("Type") ."</TH><TH>". t("Score") ."</TH></TR>\n";
while ($node = db_fetch_object($result)) {
if ($user->id == $node->author || user_get($user, "history", "n$node->nid")) $content .= " <TR><TD><A HREF=\"module.php?mod=moderation&op=view&id=$node->nid\">". check_output($node->title) ."</A></TD><TD ALIGN=\"center\">". format_username($node->userid) ."</TD><TD ALIGN=\"center\">". check_output($node->type) ."</TD><TD ALIGN=\"center\">". moderation_score($node->nid) ."</TD></TR>\n";
else $content .= " <TR><TD><A HREF=\"module.php?mod=moderation&op=view&id=$node->nid\">". check_output($node->title) ."</A></TD><TD ALIGN=\"center\">". format_username($node->userid) ."</TD><TD ALIGN=\"center\">". check_output($node->type) ."</TD><TD ALIGN=\"center\"><A HREF=\"module.php?mod=moderation&op=view&id=$node->nid\">". t("vote") ."</A></TD></TR>\n";