diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-05-26 19:08:14 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-05-26 19:08:14 +0000 |
commit | 0250938e2b2bb66bdeb8e1209ea77eba49a4c72d (patch) | |
tree | 1adfddfc1fb0be49c645385db39d2832c595e8ba | |
parent | f68f9111ca0de803400daeb4ba8f2d1e0ec8669b (diff) | |
download | brdo-0250938e2b2bb66bdeb8e1209ea77eba49a4c72d.tar.gz brdo-0250938e2b2bb66bdeb8e1209ea77eba49a4c72d.tar.bz2 |
- Patch #17028 by Ber: theme xml_icon should allow inline XML icons.
-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 53e7b38b6..6f90399d7 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -843,7 +843,7 @@ function theme_more_help_link($url) { */ function theme_xml_icon($url) { if ($image = theme('image', 'misc/xml.png', t('XML feed'), t('XML feed'))) { - return '<div class="xml-icon"><a href="'. check_url($url) .'">'. $image. '</a></div>'; + return '<span class="xml-icon"><a href="'. check_url($url) .'">'. $image. '</a></span>'; } } |