From 631c9bb4d60d242432052f56c00768392f42a392 Mon Sep 17 00:00:00 2001 From: donncha Date: Tue, 24 Jun 2008 17:00:10 +0000 Subject: WP Merge to revision 8180 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1336 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-includes/widgets.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wp-includes/widgets.php') diff --git a/wp-includes/widgets.php b/wp-includes/widgets.php index f396547..fd0bc3d 100644 --- a/wp-includes/widgets.php +++ b/wp-includes/widgets.php @@ -452,11 +452,11 @@ function wp_widget_links($args) { extract($args, EXTR_SKIP); $before_widget = preg_replace('/id="[^"]*"/','id="%id"', $before_widget); - wp_list_bookmarks(array( + wp_list_bookmarks(apply_filters('widget_links_args', array( 'title_before' => $before_title, 'title_after' => $after_title, 'category_before' => $before_widget, 'category_after' => $after_widget, 'show_images' => true, 'class' => 'linkcat widget' - )); + ))); } function wp_widget_search($args) { -- cgit