summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-08-11 18:01:51 +0000
committerDries Buytaert <dries@buytaert.net>2008-08-11 18:01:51 +0000
commitb9eb3c896fca3c736dd19ddc50209f6c652a40b7 (patch)
treea05a427112657f3417ed83254938bd246e8e21b7
parent8d11f75d89cb38a7f3add3c4eed9e856fdc41846 (diff)
downloadbrdo-b9eb3c896fca3c736dd19ddc50209f6c652a40b7.tar.gz
brdo-b9eb3c896fca3c736dd19ddc50209f6c652a40b7.tar.bz2
- Patch #254725 by Steve Dondley and BioALIEN: maxlength field for 'allowed HTML tags' is too short
-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 090b7f30e..210f7fc06 100644
--- a/modules/filter/filter.module
+++ b/modules/filter/filter.module
@@ -662,7 +662,7 @@ function _filter_html_settings($format) {
'#title' => t('Allowed HTML tags'),
'#default_value' => variable_get("allowed_html_$format", '<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>'),
'#size' => 64,
- '#maxlength' => 255,
+ '#maxlength' => 1024,
'#description' => t('Specify a list of tags which should not be stripped. (Note that JavaScript event attributes are always stripped.)'),
);
$form['filter_html']["filter_html_help_$format"] = array(