function fckeditor_process_input in FCKeditor - WYSIWYG HTML editor 5.2
Same name and namespace in other branches
- 6.2 fckeditor.module \fckeditor_process_input()
- 6 fckeditor.module \fckeditor_process_input()
Allow more than 255 chars in Allowed HTML tags textfield
File
- ./
fckeditor.module, line 295 - FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2007 Frederico Caldeira Knabben
Code
function fckeditor_process_input($element) {
if ($element['#id'] == 'edit-allowed-html-1') {
$element['#maxlength'] = max($element['#maxlength'], 1024);
}
return $element;
}