diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-04-08 16:33:34 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-04-08 16:33:34 +0000 |
commit | 0d14ee0b0ca4837decfdda7cc019b66afb4567fd (patch) | |
tree | 9543ad48e509fff917f4280391d08cc3c62111ce | |
parent | 461a62422b26955a650707c9b9b586a769f98815 (diff) | |
download | brdo-0d14ee0b0ca4837decfdda7cc019b66afb4567fd.tar.gz brdo-0d14ee0b0ca4837decfdda7cc019b66afb4567fd.tar.bz2 |
- fixed small bug in "recent nodes"
-rw-r--r-- | account.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/account.php b/account.php index a48ab8114..755646729 100644 --- a/account.php +++ b/account.php @@ -453,7 +453,7 @@ function account_track_nodes() { } function account_track_site() { - global $nstatus, $status, $theme, $user; + global $rstatus, $status, $theme, $user; $period = 259200; // 3 days @@ -480,7 +480,7 @@ function account_track_site() { $output .= "<TABLE BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"4\">\n"; $output .= " <TR><TH>". t("Subject") ."</TH><TH>". t("Author") ."</TH><TH>". t("Type") ."</TH><TH>". t("Status") ."</TH></TR>\n"; while ($node = db_fetch_object($result)) { - $output .= " <TR><TD><A HREF=\"node.php?id=$node->nid\">". check_output($node->title) ."</A></TD><TD ALIGN=\"center\">". format_username($node->userid) ."</TD><TD ALIGN=\"center\">$node->type</TD><TD>". $nstatus[$node->status] ."</TD></TR>"; + $output .= " <TR><TD><A HREF=\"node.php?id=$node->nid\">". check_output($node->title) ."</A></TD><TD ALIGN=\"center\">". format_username($node->userid) ."</TD><TD ALIGN=\"center\">$node->type</TD><TD>". $rstatus[$node->status] ."</TD></TR>"; } $output .= "</TABLE>"; |