From 89fe0ff804e7c6497ebacc8b341ac89974f6f255 Mon Sep 17 00:00:00 2001 From: donncha Date: Mon, 21 May 2007 18:37:58 +0000 Subject: WP Merge to rev 5499, this is a big one! Test it before you put it live! Test only, not for production use yet git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@972 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-includes/default-filters.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'wp-includes/default-filters.php') diff --git a/wp-includes/default-filters.php b/wp-includes/default-filters.php index cda3cc9..0861361 100644 --- a/wp-includes/default-filters.php +++ b/wp-includes/default-filters.php @@ -45,7 +45,7 @@ add_filter('comment_flood_filter', 'wp_throttle_comment_flood', 10, 3); add_filter('comment_url', 'clean_url'); add_filter('comment_text', 'convert_chars'); -add_filter('comment_text', 'make_clickable'); +add_filter('comment_text', 'make_clickable', 9); add_filter('comment_text', 'force_balance_tags', 25); add_filter('comment_text', 'wpautop', 30); add_filter('comment_text', 'convert_smilies', 20); @@ -173,4 +173,7 @@ add_action('sanitize_comment_cookies', 'sanitize_comment_cookies'); add_action('admin_print_scripts', 'wp_print_scripts', 20); add_action('mce_options', '_mce_set_direction'); add_action('init', 'smilies_init', 5); -?> +add_action( 'plugins_loaded', 'wp_maybe_load_widgets', 0 ); +add_action( 'shutdown', 'wp_ob_end_flush_all', 1); + +?> \ No newline at end of file -- cgit