Index: modules/toolbar/toolbar.module =================================================================== RCS file: /cvs/drupal/drupal/modules/toolbar/toolbar.module,v retrieving revision 1.3 diff -u -r1.3 toolbar.module --- modules/toolbar/toolbar.module 7 Jul 2009 07:54:35 -0000 1.3 +++ modules/toolbar/toolbar.module 25 Jul 2009 07:48:17 -0000 @@ -37,7 +37,7 @@ */ function toolbar_page_alter(&$page) { if (user_access('access toolbar')) { - $page['page_top']['toolbar'] = toolbar_build(); + $page['page_bottom']['toolbar'] = toolbar_build(); } } @@ -62,8 +62,8 @@ $build = array( '#theme' => 'toolbar', '#attached_js' => array( - $module_path . '/toolbar.js', - array('data' => 'misc/jquery.cookie.js', 'weight' => JS_LIBRARY + 2), + array('data' => $module_path . '/toolbar.js', 'scope' =>'footer'), + array('data' => 'misc/jquery.cookie.js', 'weight' => JS_LIBRARY + 2, 'scope' => 'footer'), ), '#attached_css' => array( $module_path . '/toolbar.css',