From 728943945e720c9fd7755d8e93ce159c7af00216 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 20 Apr 2009 19:37:29 +0000 Subject: [PATCH] Fix PHP error in magpie. Props jsixpack. fixes #9225 git-svn-id: http://svn.automattic.com/wordpress/trunk@11016 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/rss.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/rss.php b/wp-includes/rss.php index 3d9aa3214..3d95babd9 100644 --- a/wp-includes/rss.php +++ b/wp-includes/rss.php @@ -170,7 +170,7 @@ class MagpieRSS { { // if tags are inlined, then flatten $attrs_str = join(' ', - array_map('map_attrs', + array_map(array('MagpieRSS', 'map_attrs'), array_keys($attrs), array_values($attrs) ) );