From 792bbe78bc95e3b3d760f402b10934f7e801cd24 Mon Sep 17 00:00:00 2001 From: donncha Date: Tue, 11 Sep 2007 12:40:12 +0000 Subject: Assign values to the kses tags lists git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1055 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-includes/kses.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wp-includes') diff --git a/wp-includes/kses.php b/wp-includes/kses.php index bca25be..178071f 100644 --- a/wp-includes/kses.php +++ b/wp-includes/kses.php @@ -787,8 +787,8 @@ function wp_filter_post_display_kses($data) { function kses_init() { global $allowedposttags, $allowedtags; - apply_filters( 'edit_allowedposttags', $allowedposttags ); - apply_filters( 'edit_allowedtags', $allowedtags ); + $allowedposttags = apply_filters( 'edit_allowedposttags', $allowedposttags ); + $allowedtags = apply_filters( 'edit_allowedtags', $allowedtags ); kses_remove_filters(); kses_init_filters(); -- cgit