summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-26 23:01:42 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-26 23:01:42 +0000
commitcb8514ca8eff4cbb9a9bfb5241a5792509ee0d88 (patch)
tree45d75663a8ec373a737d77fd3bb14427314387af /modules
parent8bf48bf999c6c496679acda7dca7e1cc35cafed6 (diff)
downloadbrdo-cb8514ca8eff4cbb9a9bfb5241a5792509ee0d88.tar.gz
brdo-cb8514ca8eff4cbb9a9bfb5241a5792509ee0d88.tar.bz2
#99708 by jvandyk. Proper use of ;.
Diffstat (limited to 'modules')
-rw-r--r--modules/filter/filter.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/filter/filter.module b/modules/filter/filter.module
index a385db3e3..3add5fa56 100644
--- a/modules/filter/filter.module
+++ b/modules/filter/filter.module
@@ -1076,7 +1076,7 @@ function _filter_url_settings($format) {
'#title' => t('Maximum link text length'),
'#default_value' => variable_get('filter_url_length_'. $format, 72),
'#maxlength' => 4,
- '#description' => t('URLs longer than this number of characters will be truncated to prevent long strings that break formatting. The link itself will be retained, just the text portion of the link will be truncated.'),
+ '#description' => t('URLs longer than this number of characters will be truncated to prevent long strings that break formatting. The link itself will be retained; just the text portion of the link will be truncated.'),
);
return $form;
}