From 2285afd1e019fc7fa28ded777098be2b0ec0fe6c Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 13 Jun 2001 08:48:47 +0000 Subject: - Applied Remco's patch: the
  • -bullets were not valid HTML and did only take up space. --- includes/theme.inc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'includes') 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 .= "
  • ". t("track your comments") ."
  • \n"; - $content .= "
  • ". t("track your nodes") ."
  • \n"; - $content .= "
  • ". strtr(t("track %a"), array("%a" => variable_get("site_name", "drupal"))) ."
  • \n"; + $content .= "". t("track your comments") ."
    \n"; + $content .= "". t("track your nodes") ."
    \n"; + $content .= "". strtr(t("track %a"), array("%a" => variable_get("site_name", "drupal"))) ."
    \n"; $content .= "

    \n"; - $content .= "

  • ". t("edit your information") ."
  • \n"; - $content .= "
  • ". t("edit your preferences") ."
  • \n"; - $content .= "
  • ". t("edit your content") ."
  • \n"; + $content .= "". t("edit your information") ."
    \n"; + $content .= "". t("edit your preferences") ."
    \n"; + $content .= "". t("edit your content") ."
    \n"; $content .= "

    \n"; if (user_access($user)) { - $content .= "

  • ". strtr(t("administer %a"), array("%a" => variable_get("site_name", "drupal"))) ."
  • \n"; - $content .= "

    \n"; + $content .= "". strtr(t("administer %a"), array("%a" => variable_get("site_name", "drupal"))) ."
    \n"; + $content .= "

    \n"; } foreach (module_list() as $name) { if ($links = module_invoke($name, "menu")) { - foreach ($links as $link) $content .= "

  • $link
  • \n"; + foreach ($links as $link) $content .= "$link
    \n"; } } if ($link) $content .= "

    \n"; - $content .= "

  • ". t("logout") ."
  • \n"; + $content .= "". t("logout") ."
    \n"; $theme->box(strtr(t("%a's configuration"), array("%a" => $user->userid)), "$content"); } -- cgit v1.2.3