Index: theme.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/theme.inc,v retrieving revision 1.257 diff -u -r1.257 theme.inc --- theme.inc 6 Sep 2005 20:32:53 -0000 1.257 +++ theme.inc 8 Sep 2005 15:22:32 -0000 @@ -320,19 +320,13 @@ if ($settings['toggle_' . $type . '_links']) { for ($i =0; $i < $count; $i++) { - unset($attributes); if (!empty($value['text'][$i])) { if (!empty($value['description'][$i])) { $attributes['title'] = $value['description'][$i]; } $text = $value['text'][$i]; $link = $value['link'][$i]; - if (substr($link, 0, 7) == 'http://') { - $settings[$type .'_links'][] = ''. check_plain($text) .''; - } - else { - $settings[$type .'_links'][] = l($text, $link, $attributes); - } + $settings[$type .'_links'][] = l($text, $link, $attributes); } } if ($settings[$type .'_links'] == array()) {