Assign the event we got into the events array - not the whole response.

This commit is contained in:
Andrew McMillan 2010-03-31 23:03:04 +13:00
parent 92abec52b6
commit 80b7afb8d3

View File

@ -738,7 +738,8 @@ EOXML;
}
else {
foreach( $event_hrefs AS $k => $href ) {
$events[$href] = $this->DoGETRequest($href);
$this->DoGETRequest($href);
$events[$href] = $this->httpResponseBody;
}
}