summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-06-13 08:48:47 +0000
committerDries Buytaert <dries@buytaert.net>2001-06-13 08:48:47 +0000
commit2285afd1e019fc7fa28ded777098be2b0ec0fe6c (patch)
treec0a3a42d50c11b156b89f482f349742b006a6779
parenta7f9a38acf5da59ee70101c6accac566b355921d (diff)
downloadbrdo-2285afd1e019fc7fa28ded777098be2b0ec0fe6c.tar.gz
brdo-2285afd1e019fc7fa28ded777098be2b0ec0fe6c.tar.bz2
- Applied Remco's patch:
the <LI>-bullets were not valid HTML and did only take up space.
-rw-r--r--includes/theme.inc20
1 files changed, 10 insertions, 10 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 9610b504a..36de818a3 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -50,28 +50,28 @@ function theme_account($theme) {
if ($user->id) {
// Display account settings:
- $content .= "<LI><A HREF=\"account.php?op=track&topic=comments\">". t("track your comments") ."</A></LI>\n";
- $content .= "<LI><A HREF=\"account.php?op=track&topic=nodes\">". t("track your nodes") ."</A></LI>\n";
- $content .= "<LI><A HREF=\"account.php?op=track&topic=site\">". strtr(t("track %a"), array("%a" => variable_get("site_name", "drupal"))) ."</A></LI>\n";
+ $content .= "<A HREF=\"account.php?op=track&topic=comments\">". t("track your comments") ."</A><BR>\n";
+ $content .= "<A HREF=\"account.php?op=track&topic=nodes\">". t("track your nodes") ."</A><BR>\n";
+ $content .= "<A HREF=\"account.php?op=track&topic=site\">". strtr(t("track %a"), array("%a" => variable_get("site_name", "drupal"))) ."</A><BR>\n";
$content .= "<P>\n";
- $content .= "<LI><A HREF=\"account.php?op=edit&topic=user\">". t("edit your information") ."</A></LI>\n";
- $content .= "<LI><A HREF=\"account.php?op=edit&topic=site\">". t("edit your preferences") ."</A></LI>\n";
- $content .= "<LI><A HREF=\"account.php?op=edit&topic=content\">". t("edit your content") ."</A></LI>\n";
+ $content .= "<A HREF=\"account.php?op=edit&topic=user\">". t("edit your information") ."</A><BR>\n";
+ $content .= "<A HREF=\"account.php?op=edit&topic=site\">". t("edit your preferences") ."</A><BR>\n";
+ $content .= "<A HREF=\"account.php?op=edit&topic=content\">". t("edit your content") ."</A><BR>\n";
$content .= "<P>\n";
if (user_access($user)) {
- $content .= "<LI><A HREF=\"admin.php\">". strtr(t("administer %a"), array("%a" => variable_get("site_name", "drupal"))) ."</A></LI>\n";
- $content .= "<P>\n";
+ $content .= "<A HREF=\"admin.php\">". strtr(t("administer %a"), array("%a" => variable_get("site_name", "drupal"))) ."</A><BR>\n";
+ $content .= "<P>\n";
}
foreach (module_list() as $name) {
if ($links = module_invoke($name, "menu")) {
- foreach ($links as $link) $content .= "<LI>$link</LI>\n";
+ foreach ($links as $link) $content .= "$link<BR>\n";
}
}
if ($link) $content .= "<P>\n";
- $content .= "<LI><A HREF=\"account.php?op=logout\">". t("logout") ."</A></LI>\n";
+ $content .= "<A HREF=\"account.php?op=logout\">". t("logout") ."</A><BR>\n";
$theme->box(strtr(t("%a's configuration"), array("%a" => $user->userid)), "$content");
}