Update the "photo" and "thumb" field in the "profile" table
This commit is contained in:
parent
ca614db66a
commit
a53f01bacc
|
@ -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]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user