--- securepages/securepages.admin.inc.orig 2010-02-08 17:27:34.000000000 -0800
+++ securepages/securepages.admin.inc 2010-02-08 17:28:01.000000000 -0800
@@ -52,6 +52,7 @@
'#cols' => 40,
'#rows' => 5,
'#description' => t("Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are 'blog' for the blog page and 'blog/*' for every personal blog. '<front>' is the front page."),
+ '#wysiwyg' => FALSE,
);
$form['securepages_ignore'] = array(
'#type' => 'textarea',
@@ -60,8 +61,9 @@
'#cols' => 40,
'#rows' => 5,
'#description' => t("The pages listed here will be ignored and be either returned in http or https. Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are 'blog' for the blog page and 'blog/*' for every personal blog. '<front>' is the front page."),
+ '#wysiwyg' => FALSE,
);
return system_settings_form($form);
}