allow custom avatar sizes - needed for Diaspora hcard/vcard

This commit is contained in:
Friendika 2011-08-03 21:05:39 -07:00
parent ad1e827169
commit d45a66e700
4 changed files with 43 additions and 3 deletions

View file

@ -995,6 +995,11 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_fee
require_once('library/simplepie/simplepie.inc');
if(! strlen($xml)) {
logger('consume_feed: empty input');
return;
}
$feed = new SimplePie();
$feed->set_raw_data($xml);
if($datedir)