mirror of https://github.com/byecorps/id.git
Clearing profile.php will remake soon
This commit is contained in:
parent
10702cef41
commit
75ae8e91de
21
profile.php
21
profile.php
|
@ -19,26 +19,5 @@ if (empty($profile)) {
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
$avatar = "/assets/default.png";
|
|
||||||
$display_name = "";
|
|
||||||
|
|
||||||
if ($_SESSION['id'] != $profile['id']) {
|
|
||||||
$avatar = get_avatar_url($profile['id']);
|
|
||||||
if ($profile['public_display_name']) {
|
|
||||||
$display_name = get_display_name($profile['id'], false);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$avatar = get_avatar_url($profile['id']);
|
|
||||||
$display_name = get_display_name($profile['id'], false);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get badges owned by this person
|
|
||||||
$badges = db_execute_all('SELECT * FROM badge_owners INNER JOIN badges b on badge_owners.badge_id = b.id WHERE owner_id = ?; ', [$profile['id']]);
|
|
||||||
if (!empty($badges)) {
|
|
||||||
if (!array_is_list($badges)) {
|
|
||||||
$badges = array (0 => $badges);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue