From bff5ffeac402d7f5d7feafe48824c07e9ead3546 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Thu, 8 Feb 2001 16:57:26 +0000
Subject: [PATCH] - fixed tiny bug in the user account administration page

---
 modules/account.module | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/account.module b/modules/account.module
index a2b203ea1812..90ff8f038c81 100644
--- a/modules/account.module
+++ b/modules/account.module
@@ -144,7 +144,7 @@ function account_stories($id) {
 function account_comments($id) {
   $result = db_query("SELECT * FROM comments WHERE link = 'story' AND author = $id ORDER BY timestamp DESC");
   while ($comment = db_fetch_object($result)) {
-    $output .= "<LI><A HREF=\"story.php?id=$comment->sid&cid=$comment->cid&pid=$comment->pid#$comment->cid\">". check_output($comment->subject) ."</A></LI>\n";
+    $output .= "<LI><A HREF=\"story.php?id=$comment->lid&cid=$comment->cid&pid=$comment->pid#$comment->cid\">". check_output($comment->subject) ."</A></LI>\n";
   }
   return $output;
 }
-- 
GitLab