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
This commit is contained in:
ryan 2007-04-30 16:45:44 +00:00
parent 041af31c32
commit 73d48439f8
1 changed files with 1 additions and 1 deletions

View File

@ -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'] )