diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-01-10 22:19:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-01-10 22:19:47 +0000 |
commit | ba3eead0d6f41931819e4f73ff3d7e48173c4092 (patch) | |
tree | bea5015363bd1de8c77492a9d5d20d4bf8c86b30 /modules | |
parent | 6334ee20933bfcfb8bc958514dd16304d421f081 (diff) | |
download | brdo-ba3eead0d6f41931819e4f73ff3d7e48173c4092.tar.gz brdo-ba3eead0d6f41931819e4f73ff3d7e48173c4092.tar.bz2 |
- Made sure the text doesn't wrap.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/user.module | 4 | ||||
-rw-r--r-- | modules/user/user.module | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/user.module b/modules/user.module index 00a4de46f..537ce008d 100644 --- a/modules/user.module +++ b/modules/user.module @@ -341,7 +341,7 @@ function user_block($op = "list", $delta = 0) { $output .= theme_invoke("theme_item_list", $items); $block["subject"] = t("Log in"); - $block["content"] = "<div style=\"{ width: 155; }\">$output</div>"; + $block["content"] = "<div style=\"{ white-space: nowrap; }\">$output</div>"; return $block; } break; @@ -355,7 +355,7 @@ function user_block($op = "list", $delta = 0) { $output = implode($content, "<br />"); $block["subject"] = $user->name; - $block["content"] = "<div style=\"{ width: 155; }\">$output</div>"; + $block["content"] = "<div style=\"{ white-space: nowrap; }\">$output</div>"; return $block; } break; diff --git a/modules/user/user.module b/modules/user/user.module index 00a4de46f..537ce008d 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -341,7 +341,7 @@ function user_block($op = "list", $delta = 0) { $output .= theme_invoke("theme_item_list", $items); $block["subject"] = t("Log in"); - $block["content"] = "<div style=\"{ width: 155; }\">$output</div>"; + $block["content"] = "<div style=\"{ white-space: nowrap; }\">$output</div>"; return $block; } break; @@ -355,7 +355,7 @@ function user_block($op = "list", $delta = 0) { $output = implode($content, "<br />"); $block["subject"] = $user->name; - $block["content"] = "<div style=\"{ width: 155; }\">$output</div>"; + $block["content"] = "<div style=\"{ white-space: nowrap; }\">$output</div>"; return $block; } break; |