refresh contact record after setting change

This commit is contained in:
friendica 2012-02-11 23:17:55 -08:00
parent bb19c8ba4e
commit 4cfb1fe0cf
1 changed files with 8 additions and 0 deletions

View File

@ -100,6 +100,14 @@ function contacts_post(&$a) {
info( t('Contact updated.') . EOL);
else
notice( t('Failed to update contact record.') . EOL);
$r = q("select * from contact where id = %d and uid = %d limit 1",
intval($contact_id),
intval(local_user())
);
if($r && count($r))
$a->data['contact'] = $r[0];
return;
}