From 2bfb93e5a2cd6077ccc6ddcad22da4cbf03ecf04 Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Fri, 9 Feb 2024 01:10:14 +0700 Subject: [PATCH] Update functions.php --- library/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/includes/functions.php b/library/includes/functions.php index 2d0e5d5c..15cd0005 100644 --- a/library/includes/functions.php +++ b/library/includes/functions.php @@ -2709,7 +2709,7 @@ function profile_url ($data) $user_rank = !empty($data['user_rank']) ? $data['user_rank'] : 0; - if (isset($ranks[$user_rank])) + if (isset($ranks[$user_rank]) && ($data['user_id'] != BOT_UID && $data['user_id'] != GUEST_UID)) { $title = $ranks[$user_rank]['rank_title']; $style = $ranks[$user_rank]['rank_style'];