From ae16b19350645d001d4adbd94cfc72ebe5120355 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 20 Apr 2009 19:37:29 +0000 Subject: [PATCH] Fix PHP error in magpie. Props jsixpack. fixes #9225 git-svn-id: https://develop.svn.wordpress.org/trunk@11016 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 3d9aa3214e..3d95babd98 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) ) );