From 4ab551427f3392f0ca5e1e250c0841f867eddf61 Mon Sep 17 00:00:00 2001 From: tarantonio Date: Sat, 3 May 2014 23:47:27 +0200 Subject: [PATCH] Update characterprofile.php --- characterprofile.php | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) 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: