Visit the edit content type page and click on the "Page Title Settings" vertical tab. The help text for the Page Title Pattern contains an incorrect URL to the Page Title admin page. Currently, it's linking to #overlay=admin/content/page_title and needs to go to #overlay=admin/config/search/page-title.

Line 275 in page_title.module currently is:

    '#description' => t('Enter the <em>Page Title</em> pattern you want to use for this node type. For more information, please use the !link settings page', array('!link' => l('Page Title', 'admin/content/page_title'))),

Change it to:

    '#description' => t('Enter the <em>Page Title</em> pattern you want to use for this node type. For more information, please use the !link settings page', array('!link' => l('Page Title', 'admin/config/search/page-title'))),
CommentFileSizeAuthor
page_title_SettingsURLfix.patch873 bytesNoDice
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

willvincent’s picture

Status: Needs review » Reviewed & tested by the community

I was just about to submit the same patch. I confirm this fixes the problem.

nicholasThompson’s picture

Version: 7.x-2.4-beta1 » 7.x-2.x-dev

Well spotted. I'll add that ASAP.

lolmaus’s picture

Subscribing