From 8d81b64d2f9dba5c2f93a12507f50ddfdae99071 Mon Sep 17 00:00:00 2001 From: Jan BELLON Date: Tue, 12 Mar 2024 14:11:24 +0000 Subject: [PATCH] Update file users.php --- html/users.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/html/users.php b/html/users.php index 556c4df4..40625025 100644 --- a/html/users.php +++ b/html/users.php @@ -119,11 +119,11 @@ if(isset($_POST['userid']) && isset($_POST['role']) && isset($_POST['accreditati if ($resultat) { foreach($resultat as $row) { $user_pp = $row['profile_picture'] == NULL ? "https://abs.twimg.com/sticky/default_profile_images/default_profile_400x400.png" : $row['profile_picture']; - echo ""; + echo ""; echo "
"; echo "
"; echo "
"; - echo "
" . $resultat[0]['display_name']; + echo "
" . $row['display_name']; echo "
"; echo ""; echo "
"; echo "
"; - echo "
@" . $resultat[0]['username'] . "
"; + echo "
@" . $row['username'] . "
"; echo "
"; } }