summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-02-06 16:25:09 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-02-06 16:25:09 +0000
commit7842c3c14d042bfaa2bf2caf6a8ea8e5ec0583ad (patch)
tree100c146b6148e678e6e531f3154aa126d07e6c81 /modules
parentf2e8aeff804a589a06628751079a5aa53589f914 (diff)
downloadbrdo-7842c3c14d042bfaa2bf2caf6a8ea8e5ec0583ad.tar.gz
brdo-7842c3c14d042bfaa2bf2caf6a8ea8e5ec0583ad.tar.bz2
#333478 by keith.smith: Remove extra comma and 'character sequences' in taxonomy tag description.
Diffstat (limited to 'modules')
-rw-r--r--modules/comment/comment.module2
-rw-r--r--modules/node/node.module2
-rw-r--r--modules/taxonomy/taxonomy.module2
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 4983ca7db..16996f6dd 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -2143,7 +2143,7 @@ function comment_unpublish_by_keyword_action_form($context) {
$form['keywords'] = array(
'#title' => t('Keywords'),
'#type' => 'textarea',
- '#description' => t('The comment will be unpublished if it contains any of the character sequences above. Use a comma-separated list of character sequences. Example: funny, bungee jumping, "Company, Inc." . Character sequences are case-sensitive.'),
+ '#description' => t('The comment will be unpublished if it contains any of the phrases above. Use a case-sensitive, comma-separated list of phrases. Example: funny, bungee jumping, "Company, Inc."'),
'#default_value' => isset($context['keywords']) ? drupal_implode_tags($context['keywords']) : '',
);
diff --git a/modules/node/node.module b/modules/node/node.module
index 1e73c1958..a50976287 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -3066,7 +3066,7 @@ function node_unpublish_by_keyword_action_form($context) {
$form['keywords'] = array(
'#title' => t('Keywords'),
'#type' => 'textarea',
- '#description' => t('The post will be unpublished if it contains any of the character sequences above. Use a comma-separated list of character sequences. Example: funny, bungee jumping, "Company, Inc." . Character sequences are case-sensitive.'),
+ '#description' => t('The post will be unpublished if it contains any of the phrases above. Use a case-sensitive, comma-separated list of phrases. Example: funny, bungee jumping, "Company, Inc."'),
'#default_value' => isset($context['keywords']) ? drupal_implode_tags($context['keywords']) : '',
);
return $form;
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index cb9db61c3..7cb22aa79 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -518,7 +518,7 @@ function taxonomy_form_alter(&$form, $form_state, $form_id) {
$help = $vocabulary->help;
}
else {
- $help = t('A comma-separated list of terms describing this content. Example: funny, bungee jumping, "Company, Inc.".');
+ $help = t('A comma-separated list of terms describing this content. Example: funny, bungee jumping, "Company, Inc."');
}
$form['taxonomy']['tags'][$vocabulary->vid] = array('#type' => 'textfield',
'#title' => $vocabulary->name,