diff --git a/characterprofile.php b/characterprofile.php index c6c6c56..09ade79 100644 --- a/characterprofile.php +++ b/characterprofile.php @@ -7,9 +7,9 @@ if (isset($_GET['name']) === true && empty($_GET['name']) === false) { $user_id = user_character_exist($name); if ($user_id !== false) { if ($config['TFSVersion'] == 'TFS_10') { - $profile_data = user_character_data($user_id, 'name', 'level', 'vocation', 'lastlogin'); + $profile_data = user_character_data($user_id, 'name', 'level', 'vocation', 'lastlogin', 'sex'); $profile_data['online'] = user_is_online_10($user_id); - } else $profile_data = user_character_data($user_id, 'name', 'level', 'vocation', 'lastlogin', 'online'); + } else $profile_data = user_character_data($user_id, 'name', 'level', 'vocation', 'lastlogin', 'online', 'sex'); $profile_znote_data = user_znote_character_data($user_id, 'created', 'hide_char', 'comment'); $guild_exist = false; @@ -23,6 +23,14 @@ if (isset($_GET['name']) === true && empty($_GET['name']) === false) {

Profile: