Fix notice in Model\Profile
This commit is contained in:
parent
fb63274aaf
commit
422ebb5d58
|
@ -117,6 +117,11 @@ class Profile
|
||||||
}
|
}
|
||||||
|
|
||||||
if (count($profiledata) > 0) {
|
if (count($profiledata) > 0) {
|
||||||
|
// Ensure to have a "nickname" field
|
||||||
|
if (empty($profiledata['nickname']) && !empty($profiledata['nick'])) {
|
||||||
|
$profiledata['nickname'] = $profiledata['nick'];
|
||||||
|
}
|
||||||
|
|
||||||
// Add profile data to sidebar
|
// Add profile data to sidebar
|
||||||
$a->page['aside'] .= self::sidebar($a, $profiledata, true, $show_connect);
|
$a->page['aside'] .= self::sidebar($a, $profiledata, true, $show_connect);
|
||||||
|
|
||||||
|
@ -317,12 +322,12 @@ class Profile
|
||||||
|
|
||||||
|
|
||||||
$visitor_contact = [];
|
$visitor_contact = [];
|
||||||
if ($profile['uid'] && self::getMyURL()) {
|
if (!empty($profile['uid']) && self::getMyURL()) {
|
||||||
$visitor_contact = Contact::selectFirst(['rel'], ['uid' => $profile['uid'], 'nurl' => Strings::normaliseLink(self::getMyURL())]);
|
$visitor_contact = Contact::selectFirst(['rel'], ['uid' => $profile['uid'], 'nurl' => Strings::normaliseLink(self::getMyURL())]);
|
||||||
}
|
}
|
||||||
|
|
||||||
$profile_contact = [];
|
$profile_contact = [];
|
||||||
if ($profile['cid'] && self::getMyURL()) {
|
if (!empty($profile['cid']) && self::getMyURL()) {
|
||||||
$profile_contact = Contact::selectFirst(['rel'], ['id' => $profile['cid']]);
|
$profile_contact = Contact::selectFirst(['rel'], ['id' => $profile['cid']]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user