summaryrefslogtreecommitdiffstats
path: root/wp-includes/kses.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-11-27 11:19:48 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-11-27 11:19:48 +0000
commit5447f131269541ea942ae9239c95b4e1188fb57c (patch)
tree11bbdce67a32ce816b14425dd95244786a29b801 /wp-includes/kses.php
parent600b71019494e1c29898a620e58c0d2602f37b74 (diff)
downloadwordpress-mu-5447f131269541ea942ae9239c95b4e1188fb57c.tar.gz
wordpress-mu-5447f131269541ea942ae9239c95b4e1188fb57c.tar.xz
wordpress-mu-5447f131269541ea942ae9239c95b4e1188fb57c.zip
WP Merge to rev 4534
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@811 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/kses.php')
-rw-r--r--wp-includes/kses.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/wp-includes/kses.php b/wp-includes/kses.php
index 99612a0..4a5bd94 100644
--- a/wp-includes/kses.php
+++ b/wp-includes/kses.php
@@ -822,6 +822,7 @@ function kses_init_filters() {
// Post filtering
add_filter('content_save_pre', 'wp_filter_post_kses');
+ add_filter('content_filtered_save_pre', 'wp_filter_post_kses');
add_filter('pre_comment_author', 'wp_filter_kses');
add_action('admin_notices', 'wp_kses_show_message');
}
@@ -833,6 +834,7 @@ function kses_remove_filters() {
// Post filtering
remove_filter('content_save_pre', 'wp_filter_post_kses');
+ remove_filter('content_filtered_save_pre', 'wp_filter_post_kses');
}
function wp_filter_post_display_kses($data) {