From 0d14ee0b0ca4837decfdda7cc019b66afb4567fd Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 8 Apr 2001 16:33:34 +0000 Subject: - fixed small bug in "recent nodes" --- account.php | 4 ++-- 1 file 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 .= "\n"; $output .= " \n"; while ($node = db_fetch_object($result)) { - $output .= " "; + $output .= " "; } $output .= "
". t("Subject") ."". t("Author") ."". t("Type") ."". t("Status") ."
nid\">". check_output($node->title) ."". format_username($node->userid) ."$node->type". $nstatus[$node->status] ."
nid\">". check_output($node->title) ."". format_username($node->userid) ."$node->type". $rstatus[$node->status] ."
"; -- cgit v1.2.3