Index: includes/menu.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/menu.inc,v
retrieving revision 1.431
diff -r1.431 menu.inc
2322,2324c2322,2324
<     // Make sure the current page is in the trail (needed for the page title),
<     // if the link's type allows it to be shown in the breadcrumb. Also exclude
<     // it if we are on the front page.
---
>     // Make sure the current page is in the trail to build the page title.
>     // Append either the preferred link or the menu router item for the current
>     // page unless we are on the front page.
2326c2326
<     if ($last['href'] != $preferred_link['href'] && ($preferred_link['type'] & MENU_VISIBLE_IN_BREADCRUMB) == MENU_VISIBLE_IN_BREADCRUMB && !drupal_is_front_page()) {
---
>     if ($last['href'] != $preferred_link['href'] && !drupal_is_front_page()) {
Index: modules/simpletest/tests/menu.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/tests/menu.test,v
retrieving revision 1.42
diff -r1.42 menu.test
35a36,46
>   
>   /**
>    * Tests page title of MENU_CALLBACKs.
>    */
>   function testTitleMenuCallback() {
>     $this->drupalGet('');
>     $this->assertNoText(t('Menu Callback Title'));
>     // Verify that the menu router item title is output as page title.
>     $this->drupalGet('menu_callback_title');
>     $this->assertText(t('Menu Callback Title'));
>   }
Index: modules/simpletest/tests/menu_test.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/tests/menu_test.module,v
retrieving revision 1.21
diff -r1.21 menu_test.module
18a19,24
>   // This item is of type MENU_CALLBACK with no parents to test title.
>   $items['menu_callback_title'] = array(
>     'title' => 'Menu Callback Title',
>     'page callback' => 'menu_test_callback',
>     'access arguments' => array('access content'),
>   );
