From ef9cb8831ef2544e484ef09887d1afb583edeae4 Mon Sep 17 00:00:00 2001 From: Anonymous Contributor Date: Tue, 5 Sep 2023 21:59:49 +0200 Subject: [PATCH] Fix username not being included in profile page --- app/page/Profile.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/page/Profile.php b/app/page/Profile.php index c449e3a..f7edf65 100644 --- a/app/page/Profile.php +++ b/app/page/Profile.php @@ -62,6 +62,7 @@ class Profile extends \Mcp\RequestHandler 'offline-im-state' => $opensim->allowOfflineIM($_SESSION['UUID']) == "TRUE" ? ' checked' : ' ', 'firstname' => $_SESSION['FIRSTNAME'], 'lastname' => $_SESSION['LASTNAME'], + 'username' => $_SESSION['DISPLAYNAME'], 'partner' => $partnerName, 'email' => $opensim->getUserMail($_SESSION['UUID']), 'residents-js-array' => '',