If the multiget report fails, fall back to individual GET requests.

This commit is contained in:
Andrew McMillan 2010-03-31 22:59:57 +13:00
parent 0fee4d44bf
commit 92abec52b6

View File

@ -736,6 +736,11 @@ EOXML;
$events[$href] = $this->xmlnodes[$v]['value']; $events[$href] = $this->xmlnodes[$v]['value'];
} }
} }
else {
foreach( $event_hrefs AS $k => $href ) {
$events[$href] = $this->DoGETRequest($href);
}
}
return $events; return $events;
} }