From 4cd65bf8d0701f172fdf987d058c9d388d5fa138 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 15 Feb 2008 20:42:53 +0000 Subject: [PATCH] Default args to array. Props fitztrev. fixes #5866 git-svn-id: http://svn.automattic.com/wordpress/trunk@6861 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 16e5047645..24718073ff 100644 --- a/wp-includes/widgets.php +++ b/wp-includes/widgets.php @@ -1043,7 +1043,7 @@ function wp_widget_rss($args, $widget_args = 1) { echo $after_widget; } -function wp_widget_rss_output( $rss, $args = null ) { +function wp_widget_rss_output( $rss, $args = array() ) { if ( is_string( $rss ) ) { require_once(ABSPATH . WPINC . '/rss.php'); if ( !$rss = fetch_rss($rss) )