diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-25 15:39:13 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-25 15:39:13 +0000 |
commit | 245d83cb84124af7fd595e0a552a6ba782720d2e (patch) | |
tree | 3702d81ad9fe1ae8e8c05c87950115962899e986 /includes/common.inc | |
parent | b30633deee82d39e30810a3ede04bb63f7a33688 (diff) | |
download | brdo-245d83cb84124af7fd595e0a552a6ba782720d2e.tar.gz brdo-245d83cb84124af7fd595e0a552a6ba782720d2e.tar.bz2 |
#364219 follow-up by TheRec: Fix invocations of theme_links() via Drupal's rendering API.
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 6e79e6673..05a96512d 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -4257,7 +4257,7 @@ function drupal_common_theme() { 'arguments' => array('display' => NULL), ), 'links' => array( - 'arguments' => array('links' => NULL, 'attributes' => array('class' => array('links'))), + 'arguments' => array('links' => NULL, 'attributes' => array('class' => array('links')), 'heading' => array()), ), 'image' => array( 'arguments' => array('path' => NULL, 'alt' => '', 'title' => '', 'attributes' => array(), 'getsize' => TRUE), |