Update the "photo" and "thumb" field in the "profile" table

This commit is contained in:
Michael 2018-04-14 08:03:15 +00:00
parent ca614db66a
commit a53f01bacc
1 changed files with 5 additions and 0 deletions

View File

@ -220,6 +220,11 @@ class Contact extends BaseObject
// Update the public contact as well // Update the public contact as well
dba::update('contact', $fields, ['uid' => 0, 'nurl' => $self['nurl']]); 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]);
} }
} }