diff options
-rw-r--r-- | includes/common.inc | 3 | ||||
-rw-r--r-- | includes/theme.inc | 15 |
2 files changed, 0 insertions, 18 deletions
diff --git a/includes/common.inc b/includes/common.inc index 1bc551260..10c75468a 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -3679,9 +3679,6 @@ function drupal_common_theme() { 'more_help_link' => array( 'arguments' => array('url' => NULL), ), - 'xml_icon' => array( - 'arguments' => array('url' => NULL), - ), 'feed_icon' => array( 'arguments' => array('url' => NULL, 'title' => NULL), ), diff --git a/includes/theme.inc b/includes/theme.inc index a12c3b5ae..78b56136c 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -1577,21 +1577,6 @@ function theme_more_help_link($url) { } /** - * Return code that emits an XML icon. - * - * For most use cases, this function has been superseded by theme_feed_icon(). - * - * @see theme_feed_icon() - * @param $url - * The url of the feed. - */ -function theme_xml_icon($url) { - if ($image = theme('image', 'misc/xml.png', t('XML feed'), t('XML feed'))) { - return '<a href="' . check_url($url) . '" class="xml-icon">' . $image . '</a>'; - } -} - -/** * Return code that emits an feed icon. * * @param $url |