? .cache ? .project ? .settings ? 360023_publish_comment_action_2.patch ? 69468_node_type_edit_page_46.patch ? 69468_node_type_edit_page_53.patch ? 69468_node_type_edit_page_60.patch ? CHANGELOGGER.txt ? comment_publish.patch ? sites/default/files ? sites/default/settings.php Index: modules/blog/blog.test =================================================================== RCS file: /cvs/drupal/drupal/modules/blog/blog.test,v retrieving revision 1.5 diff -u -p -r1.5 blog.test --- modules/blog/blog.test 25 Nov 2008 13:14:26 -0000 1.5 +++ modules/blog/blog.test 12 Feb 2009 17:23:38 -0000 @@ -115,7 +115,7 @@ class BlogTestCase extends DrupalWebTest $this->drupalGet('node/' . $node->nid . '/edit'); $this->assertResponse($response); if ($response == 200) { - $this->assertTitle($node->title. ' | Drupal', t('Blog edit node was displayed')); + $this->assertTitle('Edit Blog entry ' . $node->title. ' | Drupal', t('Blog edit node was displayed')); $this->assertText(t('Home ' . $crumb . ' @title', array('@title' => $node->title)), t('Breadcrumbs were displayed')); } Index: modules/forum/forum.test =================================================================== RCS file: /cvs/drupal/drupal/modules/forum/forum.test,v retrieving revision 1.13 diff -u -p -r1.13 forum.test --- modules/forum/forum.test 28 Jan 2009 01:09:58 -0000 1.13 +++ modules/forum/forum.test 12 Feb 2009 17:23:39 -0000 @@ -313,7 +313,7 @@ class ForumTestCase extends DrupalWebTes $this->drupalGet('node/' . $node->nid . '/edit'); $this->assertResponse($response); if ($response == 200) { - $this->assertTitle($node->title . ' | Drupal', t('Forum edit node was displayed')); + $this->assertTitle('Edit Forum topic ' . $node->title . ' | Drupal', t('Forum edit node was displayed')); $this->assertText(t('Home ' . $crumb . ' @title', array('@title' => $node->title)), t('Breadcrumbs were displayed')); } Index: modules/node/node.pages.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.pages.inc,v retrieving revision 1.54 diff -u -p -r1.54 node.pages.inc --- modules/node/node.pages.inc 5 Feb 2009 03:42:58 -0000 1.54 +++ modules/node/node.pages.inc 12 Feb 2009 17:23:39 -0000 @@ -11,7 +11,8 @@ * Menu callback; presents the node editing form, or redirects to delete confirmation. */ function node_page_edit($node) { - drupal_set_title($node->title); + $type_name = node_get_types('name', $node); + drupal_set_title(t('Edit @type @title', array('@type' => $type_name, '@title' => $node->title)), PASS_THROUGH); return drupal_get_form($node->type . '_node_form', $node); }