Index: modules/toolbar/toolbar.module =================================================================== RCS file: /cvs/drupal/drupal/modules/toolbar/toolbar.module,v retrieving revision 1.10 diff -u -r1.10 toolbar.module --- modules/toolbar/toolbar.module 5 Sep 2009 15:05:05 -0000 1.10 +++ modules/toolbar/toolbar.module 11 Sep 2009 12:47:21 -0000 @@ -32,11 +32,12 @@ /** * Implement hook_page_build(). - * + * * Add admin toolbar to the page_top region automatically. */ function toolbar_page_build(&$page) { - if (user_access('access toolbar')) { + // Do not display the toolbar on batch processing page. + if (user_access('access toolbar') && arg(0) != 'batch') { $page['page_top']['toolbar'] = toolbar_build(); } } @@ -164,7 +165,7 @@ /** * Checks whether an item is in the active trail. * - * Useful when using a menu generated by menu_tree_all_data() which does + * Useful when using a menu generated by menu_tree_all_data() which does * not set the 'in_active_trail' flag on items. * * @todo