@@ -647,33 +647,33 @@ function theme_filter_guidelines($format) {
*/
functionfilter_filter_info(){
$filters[0]=array(
'name'=>t('Limit allowed HTML tags'),
$filters['filter_html']=array(
'title'=>t('Limit allowed HTML tags'),
'description'=>t('Allows you to restrict the HTML tags the user can use. It will also remove harmful content such as JavaScript events, JavaScript URLs and CSS styles from those tags that are not removed.'),
'process callback'=>'_filter_html',
'settings callback'=>'_filter_html_settings',
'tips callback'=>'_filter_html_tips'
);
$filters[1]=array(
'name'=>t('Convert line breaks'),
$filters['filter_autop']=array(
'title'=>t('Convert line breaks'),
'description'=>t('Converts line breaks into HTML (i.e. <br> and <p>) tags.'),
'process callback'=>'_filter_autop',
'tips callback'=>'_filter_autop_tips'
);
$filters[2]=array(
'name'=>t('Convert URLs into links'),
$filters['filter_url']=array(
'title'=>t('Convert URLs into links'),
'description'=>t('Turns web and e-mail addresses into clickable links.'),
'process callback'=>'_filter_url',
'settings callback'=>'_filter_url_settings',
'tips callback'=>'_filter_url_tips'
);
$filters[3]=array(
'name'=>t('Correct broken HTML'),
$filters['filter_htmlcorrector']=array(
'title'=>t('Correct broken HTML'),
'description'=>t('Corrects faulty and chopped off HTML in postings.'),
'process callback'=>'_filter_htmlcorrector',
);
$filters[4]=array(
'name'=>t('Escape all HTML'),
$filters['filter_html_escape']=array(
'title'=>t('Escape all HTML'),
'description'=>t('Escapes all HTML tags, so they will be visible instead of being effective.'),