a few issues with diaspora_profile

This commit is contained in:
Friendika 2011-10-18 01:12:51 -07:00
parent 85c644a828
commit fb5bddb98f
1 changed files with 7 additions and 2 deletions

View File

@ -1123,10 +1123,14 @@ function diaspora_profile($importer,$xml) {
); );
$oldphotos = ((count($r)) ? $r : null); $oldphotos = ((count($r)) ? $r : null);
require_once('include/Photo.php');
$images = import_profile_photo($image_url,$importer['uid'],$contact['id']); $images = import_profile_photo($image_url,$importer['uid'],$contact['id']);
// Generic birthday. We don't know the timezone. The year is irrelevant. // Generic birthday. We don't know the timezone. The year is irrelevant.
$birthday = str_replace('1000','1901',$birthday);
$birthday = datetime_convert('UTC','UTC',$birthday,'Y-m-d'); $birthday = datetime_convert('UTC','UTC',$birthday,'Y-m-d');
$r = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s', `avatar-date` = '%s' , `bd` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1", $r = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s', `avatar-date` = '%s' , `bd` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1",
@ -1136,10 +1140,11 @@ function diaspora_profile($importer,$xml) {
dbesc($images[1]), dbesc($images[1]),
dbesc($images[2]), dbesc($images[2]),
dbesc(datetime_convert()), dbesc(datetime_convert()),
dbesc($birthday),
intval($contact['id']), intval($contact['id']),
intval($importer['uid']), intval($importer['uid'])
dbesc($birthday)
); );
if($r) { if($r) {
if($oldphotos) { if($oldphotos) {
foreach($oldphotos as $ph) { foreach($oldphotos as $ph) {