--- weblinks.admin.inc 2009-03-05 17:35:19.000000000 +0000
+++ weblinks.admin.inc 2009-03-29 11:50:47.000000000 +0100
@@ -311,7 +311,7 @@ function weblinks_admin_settings() {
'#title' => t('Maximum link title length'),
'#default_value' => variable_get('weblinks_trim', 0),
'#description' => t('This controls how much of long URLs will be shown in a link in full node view. Zero (0) means unlimited.'),
- '#prefix' => '
',
+ '#prefix' => "
\n",
);
$form['view']['weblinks_strip'] = array(
@@ -319,7 +319,7 @@ function weblinks_admin_settings() {
'#title' => t('Strip protocol and "www"?'),
'#default_value' => variable_get('weblinks_strip', FALSE),
'#description' => t('If enabled, the protocol (e.g. "http://") and "www" (if present) will be removed before displaying the URL.'),
- '#suffix' => '
',
+ '#suffix' => "\n",
);
$form['view']['weblinks_view_position'] = array(
@@ -608,7 +608,7 @@ function weblinks_checker_settings() {
'#options' => weblinks_error_codes(),
'#default_value' => $ignore_deflt,
'#prefix' => '',
- '#suffix' => '
',
+ '#suffix' => "\n
",
);
// The following are for user deletion.
@@ -658,7 +658,7 @@ function weblinks_checker_settings() {
'#description' => t('When moving the link to the other user, should the link be published or unpublished?'),
'#default_value' => variable_get('weblinks_rescue_unpub', 0),
'#prefix' => '',
- '#suffix' => '
',
+ '#suffix' => '
',
);
return system_settings_form($form);