<?php
/*
Bluetrait 2.0 Default Filters
Michael Dale Copyright 2008
*/
if (!defined('BT_ROOT')) exit;
bt_add_content_filter(BT_PLUGIN_NAME, 'post_title', 'bt_htmlentities');
bt_add_content_filter(BT_PLUGIN_NAME, 'post_body', 'bt_filter_kses_html');
bt_add_content_filter(BT_PLUGIN_NAME, 'post_body', 'bt_autop');
bt_add_content_filter(BT_PLUGIN_NAME, 'content_title', 'bt_htmlentities');
bt_add_content_filter(BT_PLUGIN_NAME, 'content_body', 'bt_filter_kses_html');
bt_add_content_filter(BT_PLUGIN_NAME, 'content_body', 'bt_autop');
bt_add_content_filter(BT_PLUGIN_NAME, 'comment_body', 'bt_filter_kses_html_comments');
bt_add_content_filter(BT_PLUGIN_NAME, 'comment_body', 'bt_autop');
bt_add_content_filter(BT_PLUGIN_NAME, 'event_description', 'bt_filter_kses_html_events');
?>
|