diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-22 14:34:23 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-22 14:34:23 +0000 |
commit | 36ec18969549ff173b45ae35577e035c2c19f641 (patch) | |
tree | 8a73f48534a188f946e6edf5ecad90f837ce3d84 /modules/toolbar | |
parent | 73a72337bb4c296211c5cb728b027ad0fefa85ed (diff) | |
download | brdo-36ec18969549ff173b45ae35577e035c2c19f641.tar.gz brdo-36ec18969549ff173b45ae35577e035c2c19f641.tar.bz2 |
#326539 by JohnAlbin, sun, cha0s, ultimateboy, Rob Loach, Damien Tournoud: Convert 'class' attribute to use an array, not a string.
Diffstat (limited to 'modules/toolbar')
-rw-r--r-- | modules/toolbar/toolbar.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/toolbar/toolbar.module b/modules/toolbar/toolbar.module index 0ca9cf714..e650d8b15 100644 --- a/modules/toolbar/toolbar.module +++ b/modules/toolbar/toolbar.module @@ -146,7 +146,7 @@ function toolbar_menu_navigation_links($tree) { // Add icon placeholder. $link['title'] = '<span class="icon"></span>' . $item['link']['title']; // Add admin link ID and to-overlay class for the overlay. - $link['attributes'] = array('id' => 'toolbar-link-' . $id, 'class' => 'to-overlay'); + $link['attributes'] = array('id' => 'toolbar-link-' . $id, 'class' => array('to-overlay')); $link['html'] = TRUE; $class = ' path-' . $id; |