From 73d48439f869213fc77f30d7f872b49ec95df5cf Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 30 Apr 2007 16:45:44 +0000 Subject: [PATCH] Fix typo breaking recent comment cache deletion for widgets. git-svn-id: http://svn.automattic.com/wordpress/branches/2.2@5355 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/widgets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/widgets.php b/wp-includes/widgets.php index 86c1c8fd96..0782e464f2 100644 --- a/wp-includes/widgets.php +++ b/wp-includes/widgets.php @@ -687,7 +687,7 @@ function wp_widget_recent_comments_control() { if ( $options != $newoptions ) { $options = $newoptions; update_option('widget_recent_comments', $options); - delete_recent_comments_cache(); + wp_delete_recent_comments_cache(); } $title = htmlspecialchars($options['title'], ENT_QUOTES); if ( !$number = (int) $options['number'] )