Merge pull request #4839 from annando/profile-update

Update the "photo" and "thumb" field in the "profile" table
This commit is contained in:
Tobias Diekershoff 2018-04-14 11:04:33 +02:00 committed by GitHub
commit aa99cab918
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -220,6 +220,11 @@ class Contact extends BaseObject
// Update the public contact as well
dba::update('contact', $fields, ['uid' => 0, 'nurl' => $self['nurl']]);
// Update the profile
$fields = ['photo' => System::baseUrl() . '/photo/profile/' .$uid . '.jpg',
'thumb' => System::baseUrl() . '/photo/avatar/' . $uid .'.jpg'];
dba::update('profile', $fields, ['uid' => $uid, 'is-default' => true]);
}
}