diff options
-rw-r--r-- | includes/common.inc | 3 | ||||
-rw-r--r-- | includes/theme.inc | 13 |
2 files changed, 0 insertions, 16 deletions
diff --git a/includes/common.inc b/includes/common.inc index 8c5300455..6c45281cd 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -5018,9 +5018,6 @@ function drupal_common_theme() { 'help' => array( 'variables' => array(), ), - 'submenu' => array( - 'variables' => array('links' => NULL), - ), 'table' => array( 'variables' => array('header' => NULL, 'rows' => NULL, 'attributes' => array(), 'caption' => NULL, 'colgroups' => array(), 'sticky' => TRUE, 'empty' => ''), ), diff --git a/includes/theme.inc b/includes/theme.inc index fec391eda..0c9b0c3ed 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -1592,19 +1592,6 @@ function theme_breadcrumb($variables) { } /** - * Return a themed submenu, typically displayed under the tabs. - * - * @param $variables - * An associative array containing: - * - links: An array of links. - */ -function theme_submenu($variables) { - $links = $variables['links']; - - return '<div class="submenu">' . implode(' | ', $links) . '</div>'; -} - -/** * Return a themed table. * * @param $variables |