summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/user.module2
-rw-r--r--modules/user/user.module2
2 files changed, 2 insertions, 2 deletions
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)) ."<br />";
}
$block[2]["content"] = $output;
}
diff --git a/modules/user/user.module b/modules/user/user.module
index c656d8449..d68b170cf 100644
--- a/modules/user/user.module
+++ b/modules/user/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)) ."<br />";
}
$block[2]["content"] = $output;
}