diff --git a/characterprofile.php b/characterprofile.php index b57cdab..2edc93e 100644 --- a/characterprofile.php +++ b/characterprofile.php @@ -14,7 +14,7 @@ if (isset($_GET['name']) === true && empty($_GET['name']) === false) { if ($config['TFSVersion'] == 'TFS_10') { - $profile_data = user_character_data($user_id, 'account_id', 'name', 'level', 'vocation', 'health', 'healthmax', 'experience', 'mana', 'manamax', 'sex', 'lastlogin'); + $profile_data = user_character_data($user_id, 'account_id', 'name', 'level', 'group_id', 'vocation', 'health', 'healthmax', 'experience', 'mana', 'manamax', 'sex', 'lastlogin'); $profile_data['online'] = user_is_online_10($user_id); if ($config['Ach']) @@ -25,7 +25,7 @@ if (isset($_GET['name']) === true && empty($_GET['name']) === false) } else { - $profile_data = user_character_data($user_id, 'name', 'account_id', 'level', 'vocation', 'health', 'healthmax', 'experience', 'mana', 'manamax', 'lastlogin', 'online', 'sex'); + $profile_data = user_character_data($user_id, 'name', 'account_id', 'level', 'group_id', 'vocation', 'health', 'healthmax', 'experience', 'mana', 'manamax', 'lastlogin', 'online', 'sex'); } $profile_znote_data = user_znote_character_data($user_id, 'created', 'hide_char', 'comment'); @@ -54,6 +54,11 @@ if (isset($_GET['name']) === true && empty($_GET['name']) === false)