Skip to content
Snippets Groups Projects
Commit de8e8f1e authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #254725 by Steve Dondley and BioALIEN: maxlength field for 'allowed HTML tags' is too short

parent ecb30cc7
No related branches found
No related tags found
No related merge requests found
......@@ -671,7 +671,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('If "Strip disallowed tags" is selected, optionally specify tags which should not be stripped. JavaScript event attributes are always stripped.'),
);
$form['filter_html']["filter_html_help_$format"] = array(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment