From d5023adb4c61303cee7a95556513d545cb8b4470 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Fri, 31 May 2002 11:03:54 +0000 Subject: - fixing who is online block. --- modules/user.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/user.module') diff --git a/modules/user.module b/modules/user.module index c656d8449..d68b170cf 100644 --- a/modules/user.module +++ b/modules/user.module @@ -503,7 +503,7 @@ function user_block() { if (db_num_rows($result)) { $output = ""; while ($account = db_fetch_object($result)) { - $output .= lm((strlen($account->name) > 15 ? substr($account->name, 0, 15) . '...' : $account->name), array("mod" => "user", "op" => "view", "id" => $account->uid)); + $output .= lm((strlen($account->name) > 15 ? substr($account->name, 0, 15) . '...' : $account->name), array("mod" => "user", "op" => "view", "id" => $account->uid)) ."
"; } $block[2]["content"] = $output; } -- cgit v1.2.3