[wpmu-trac] [WordPress MU Trac] #1102: Header parsing in /wp-includes/rss.php sometimes receives Array instead of String
WordPress MU Trac
wpmu-trac at lists.automattic.com
Fri Aug 28 15:53:28 UTC 2009
#1102: Header parsing in /wp-includes/rss.php sometimes receives Array instead of
String
-------------------------+--------------------------------------------------
Reporter: johncoswell | Owner: somebody
Type: defect | Status: new
Priority: lowest | Milestone: 2.8.2
Component: General | Version: 2.8.2
Severity: trivial | Keywords:
-------------------------+--------------------------------------------------
It appears that some plugin is using the RSS parsing code in WPMU to load
RSS data, and the HTTP library being used sometimes provides individual
HTTP headers as an Array of elements rather than as as String. I haven't
had much time to track down the error, and fixing the HTTP library is the
proper fix, but the following quick repair does prevent the error for now:
/wp-includes/rss.php, ~line 577:
{{{
// find Etag, and Last-Modified
foreach( (array) $resp->headers as $h) {
// 2003-03-02 - Nicola Asuni (www.tecnick.com) - fixed bug "Undefined
offset: 1"
if (is_array($h)) { $h = implode("; ", $h); }
if (strpos($h, ": ")) {
list($field, $val) = explode(": ", $h, 2);
}
}}}
--
Ticket URL: <http://trac.mu.wordpress.org/ticket/1102>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser
More information about the wpmu-trac
mailing list