Skip to content
Snippets Groups Projects
Commit 584ccefe authored by Nicholas Thompson's avatar Nicholas Thompson
Browse files

Changed description text inline with usability suggestion in #600384

parent 669e89d1
No related branches found
No related tags found
No related merge requests found
......@@ -113,7 +113,7 @@ function page_title_form_alter($form_id, &$form) {
$form['page_title'] = array(
'#type' => 'textfield',
'#title' => t('Page title'),
'#description' => t('Optionally specify a different title to appear in the <title> tag of the page.'),
'#description' => t('Provide a description of this node to appear in the <title> tag which search engines can use in search result listings (optional). It is generally accepted this field should be less than 70 characters.'),
'#default_value' => $form['#node']->page_title,
'#size' => 60,
'#maxlength' => 255,
......@@ -128,7 +128,7 @@ function page_title_form_alter($form_id, &$form) {
$form['page_title'] = array(
'#type' => 'textfield',
'#title' => t('Page title'),
'#description' => t('Optionally specify a different title to appear in the <title> tag of the page.'),
'#description' => t('Provide a description of this term to appear in the <title> tag which search engines can use in search result listings (optional). It is generally accepted this field should be less than 70 characters.'),
'#default_value' => page_title_load_title($form['tid']['#value'], 'term'),
'#size' => 60,
'#maxlength' => 255,
......@@ -143,7 +143,7 @@ function page_title_form_alter($form_id, &$form) {
$form['page_title'] = array(
'#type' => 'textfield',
'#title' => t('Page title'),
'#description' => t('Optionally specify a different title to appear in the <title> tag of the page.'),
'#description' => t('Provide a description of this forum to appear in the <title> tag which search engines can use in search result listings (optional). It is generally accepted this field should be less than 70 characters.'),
'#default_value' => page_title_load_title($form['tid']['#value'], 'term'),
'#size' => 60,
'#maxlength' => 255,
......@@ -157,7 +157,7 @@ function page_title_form_alter($form_id, &$form) {
$form['account']['page_title'] = array(
'#type' => 'textfield',
'#title' => t('Page title'),
'#description' => t('Optionally specify a different title to appear in the <title> tag of the page.'),
'#description' => t('Provide a description of this user to appear in the <title> tag which search engines can use in search result listings (optional). It is generally accepted this field should be less than 70 characters.'),
'#default_value' => page_title_load_title($form['_account']['#value']->uid, 'user'),
'#size' => 60,
'#maxlength' => 255,
......@@ -194,7 +194,7 @@ function page_title_form_alter($form_id, &$form) {
$form['page_title_forum_root_title'] = array(
'#type' => 'textfield',
'#title' => t('Page title'),
'#description' => t('Optionally specify a different title to appear in the <title> tag of the page.'),
'#description' => t('Provide a description of this forum overview page to appear in the <title> tag which search engines can use in search result listings (optional). It is generally accepted this field should be less than 70 characters.'),
'#default_value' => variable_get('page_title_forum_root_title', ''),
'#size' => 60,
'#maxlength' => 255,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment