summaryrefslogtreecommitdiff
path: root/modules/account.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-02-08 16:57:26 +0000
committerDries Buytaert <dries@buytaert.net>2001-02-08 16:57:26 +0000
commitbff5ffeac402d7f5d7feafe48824c07e9ead3546 (patch)
tree7e8751c32573073e5171a06a1acccfbea7135b46 /modules/account.module
parent77ed5310351b53372ba2eb6250d18b333ac3c1a2 (diff)
downloadbrdo-bff5ffeac402d7f5d7feafe48824c07e9ead3546.tar.gz
brdo-bff5ffeac402d7f5d7feafe48824c07e9ead3546.tar.bz2
- fixed tiny bug in the user account administration page
Diffstat (limited to 'modules/account.module')
-rw-r--r--modules/account.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/account.module b/modules/account.module
index a2b203ea1..90ff8f038 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;
}