diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-08-16 21:27:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-08-16 21:27:39 +0000 |
commit | d5e1e83e77e040553d6e1aa3e559253d2559ddab (patch) | |
tree | 542ba688bd48ab89df884753de86286a9ec5bc08 | |
parent | 1b1bcc35acc7f2601e2d1a4ada02a1e02b6191dd (diff) | |
download | brdo-d5e1e83e77e040553d6e1aa3e559253d2559ddab.tar.gz brdo-d5e1e83e77e040553d6e1aa3e559253d2559ddab.tar.bz2 |
- Patch #9900 by Al: bugfix: don't display two <hr />'s.
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index f74700c5a..4e97888a6 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -517,7 +517,7 @@ function theme_error($message) { } function theme_more_help_link($url) { - return '<div class="more-help-link">' . t('[<a href="%link">more help...</a>]', array('%link' => $url)) . '</div><hr />'; + return '<div class="more-help-link">' . t('[<a href="%link">more help...</a>]', array('%link' => $url)) . '</div>'; } /** |