'u.*, g.g_id, g.g_user_title, g.g_moderator',
'FROM' => 'users AS u',
'JOINS' => array(
array(
'LEFT JOIN' => 'groups AS g',
'ON' => 'g.g_id=u.group_id'
)
),
'WHERE' => 'u.id='.$id
);
($hook = get_hook('pf_qr_get_user_info')) ? eval($hook) : null;
$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);
if (!$forum_db->num_rows($result))
message($lang_common['Bad request']);
$user = $forum_db->fetch_assoc($result);
if ($action == 'change_pass')
{
($hook = get_hook('pf_change_pass_selected')) ? eval($hook) : null;
// User pressed the cancel button
if (isset($_POST['cancel']))
redirect(forum_link($forum_url['profile_about'], $id), $lang_common['Cancel redirect']);
if (isset($_GET['key']))
{
$key = $_GET['key'];
// If the user is already logged in we shouldn't be here :)
if (!$forum_user['is_guest'])
message($lang_profile['Pass logout']);
($hook = get_hook('pf_change_pass_key_supplied')) ? eval($hook) : null;
if ($key == '' || $key != $user['activate_key'])
message(sprintf($lang_profile['Pass key bad'], ''.forum_htmlencode($forum_config['o_admin_email']).' '));
else
{
if (isset($_POST['form_sent']))
{
($hook = get_hook('pf_change_pass_key_form_submitted')) ? eval($hook) : null;
$new_password1 = forum_trim($_POST['req_new_password1']);
$new_password2 = forum_trim($_POST['req_new_password2']);
if (utf8_strlen($new_password1) < 4)
$errors[] = $lang_profile['Pass too short'];
else if ($new_password1 != $new_password2)
$errors[] = $lang_profile['Pass not match'];
// Did everything go according to plan?
if (empty($errors))
{
$new_password_hash = forum_hash($new_password1, $user['salt']);
$query = array(
'UPDATE' => 'users',
'SET' => 'password=\''.$new_password_hash.'\', activate_key=NULL',
'WHERE' => 'id='.$id
);
($hook = get_hook('pf_change_pass_key_qr_update_password')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
($hook = get_hook('pf_change_pass_key_pre_redirect')) ? eval($hook) : null;
redirect(forum_link($forum_url['index']), $lang_profile['Pass updated']);
}
}
// Is this users own profile
$forum_page['own_profile'] = ($forum_user['id'] == $id) ? true : false;
// Setup form
$forum_page['group_count'] = $forum_page['item_count'] = $forum_page['fld_count'] = 0;
$forum_page['form_action'] = forum_link($forum_url['change_password_key'], array($id, $key));
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array(sprintf($lang_profile['Users profile'], $user['username'], $lang_profile['Section about']), forum_link($forum_url['profile_about'], $id)),
($forum_page['own_profile']) ? array($lang_profile['Change your password'], forum_link($forum_url['change_password'], $id)) : array(sprintf($lang_profile['Change user password'], forum_htmlencode($user['username'])),forum_link($forum_url['change_password']), $id)
);
($hook = get_hook('pf_change_pass_key_pre_header_load')) ? eval($hook) : null;
define('FORUM_PAGE', 'profile-changepass');
require FORUM_ROOT.'header.php';
// START SUBST -
ob_start();
($hook = get_hook('pf_change_pass_key_output_start')) ? eval($hook) : null;
?>
'.$cur_error.' ';
($hook = get_hook('pf_change_pass_key_pre_errors')) ? eval($hook) : null;
?>
'.$lang_common['Required'].'') ?>
', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST -
require FORUM_ROOT.'footer.php';
}
}
// Make sure we are allowed to change this user's password
if ($forum_user['id'] != $id &&
$forum_user['g_id'] != FORUM_ADMIN &&
($forum_user['g_moderator'] != '1' || $forum_user['g_mod_edit_users'] == '0' || $forum_user['g_mod_change_passwords'] == '0' || $user['g_id'] == FORUM_ADMIN || $user['g_moderator'] == '1'))
message($lang_common['No permission']);
if (isset($_POST['form_sent']))
{
($hook = get_hook('pf_change_pass_normal_form_submitted')) ? eval($hook) : null;
$old_password = isset($_POST['req_old_password']) ? forum_trim($_POST['req_old_password']) : '';
$new_password1 = forum_trim($_POST['req_new_password1']);
$new_password2 = forum_trim($_POST['req_new_password2']);
if (utf8_strlen($new_password1) < 4)
$errors[] = $lang_profile['Pass too short'];
else if ($new_password1 != $new_password2)
$errors[] = $lang_profile['Pass not match'];
$authorized = false;
if (!empty($user['password']))
{
$old_password_hash = forum_hash($old_password, $user['salt']);
if (($user['password'] == $old_password_hash) || $forum_user['is_admmod'])
$authorized = true;
}
if (!$authorized)
$errors[] = $lang_profile['Wrong old password'];
// Did everything go according to plan?
if (empty($errors))
{
$new_password_hash = forum_hash($new_password1, $user['salt']);
$query = array(
'UPDATE' => 'users',
'SET' => 'password=\''.$new_password_hash.'\'',
'WHERE' => 'id='.$id
);
($hook = get_hook('pf_change_pass_normal_qr_update_password')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
if ($forum_user['id'] == $id)
{
$cookie_data = @explode('|', base64_decode($_COOKIE[$cookie_name]));
$expire = ($cookie_data[2] > time() + $forum_config['o_timeout_visit']) ? time() + 1209600 : time() + $forum_config['o_timeout_visit'];
forum_setcookie($cookie_name, base64_encode($forum_user['id'].'|'.$new_password_hash.'|'.$expire.'|'.sha1($user['salt'].$new_password_hash.forum_hash($expire, $user['salt']))), $expire);
}
($hook = get_hook('pf_change_pass_normal_pre_redirect')) ? eval($hook) : null;
redirect(forum_link($forum_url['profile_about'], $id), $lang_profile['Pass updated redirect']);
}
}
// Is this users own profile
$forum_page['own_profile'] = ($forum_user['id'] == $id) ? true : false;
// Setup form
$forum_page['group_count'] = $forum_page['item_count'] = $forum_page['fld_count'] = 0;
$forum_page['form_action'] = forum_link($forum_url['change_password'], $id);
$forum_page['hidden_fields'] = array(
'form_sent' => ' ',
'csrf_token' => ' '
);
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array(sprintf($lang_profile['Users profile'], $user['username']), forum_link($forum_url['profile_about'], $id)),
($forum_page['own_profile']) ? array($lang_profile['Change your password'], forum_link($forum_url['change_password'], $id)) : array(sprintf($lang_profile['Change user password'], forum_htmlencode($user['username'])),forum_link($forum_url['change_password'], $id))
);
($hook = get_hook('pf_change_pass_normal_pre_header_load')) ? eval($hook) : null;
define('FORUM_PAGE', 'profile-changepass');
require FORUM_ROOT.'header.php';
// START SUBST -
ob_start();
($hook = get_hook('pf_change_pass_normal_output_start')) ? eval($hook) : null;
?>
'.$cur_error.' ';
($hook = get_hook('pf_change_pass_normal_pre_errors')) ? eval($hook) : null;
?>
'.$lang_common['Required'].'') ?>
', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST -
require FORUM_ROOT.'footer.php';
}
else if ($action == 'change_email')
{
// Make sure we are allowed to change this user's e-mail
if ($forum_user['id'] != $id &&
$forum_user['g_id'] != FORUM_ADMIN &&
($forum_user['g_moderator'] != '1' || $forum_user['g_mod_edit_users'] == '0' || $user['g_id'] == FORUM_ADMIN || $user['g_moderator'] == '1'))
message($lang_common['No permission']);
($hook = get_hook('pf_change_email_selected')) ? eval($hook) : null;
// User pressed the cancel button
if (isset($_POST['cancel']))
redirect(forum_link($forum_url['profile_about'], $id), $lang_common['Cancel redirect']);
if (isset($_GET['key']))
{
$key = $_GET['key'];
($hook = get_hook('pf_change_email_key_supplied')) ? eval($hook) : null;
if ($key == '' || $key != $user['activate_key'])
message(sprintf($lang_profile['E-mail key bad'], ''.forum_htmlencode($forum_config['o_admin_email']).' '));
else
{
$query = array(
'UPDATE' => 'users',
'SET' => 'email=activate_string, activate_string=NULL, activate_key=NULL',
'WHERE' => 'id='.$id
);
($hook = get_hook('pf_change_email_key_qr_update_email')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
message($lang_profile['E-mail updated']);
}
}
else if (isset($_POST['form_sent']))
{
($hook = get_hook('pf_change_email_normal_form_submitted')) ? eval($hook) : null;
if (forum_hash($_POST['req_password'], $forum_user['salt']) !== $forum_user['password'])
$errors[] = $lang_profile['Wrong password'];
if (!defined('FORUM_EMAIL_FUNCTIONS_LOADED'))
require FORUM_ROOT.'include/email.php';
// Validate the email-address
$new_email = strtolower(forum_trim($_POST['req_new_email']));
if (!is_valid_email($new_email))
$errors[] = $lang_common['Invalid e-mail'];
// Check if it's a banned e-mail address
if (is_banned_email($new_email))
{
($hook = get_hook('pf_change_email_normal_banned_email')) ? eval($hook) : null;
if ($forum_config['p_allow_banned_email'] == '0')
$errors[] = $lang_profile['Banned e-mail'];
else if ($forum_config['o_mailing_list'] != '')
{
$mail_subject = 'Alert - Banned e-mail detected';
$mail_message = 'User \''.$forum_user['username'].'\' changed to banned e-mail address: '.$new_email."\n\n".'User profile: '.forum_link($forum_url['user'], $id)."\n\n".'-- '."\n".'Forum Mailer'."\n".'(Do not reply to this message)';
forum_mail($forum_config['o_mailing_list'], $mail_subject, $mail_message);
}
}
// Check if someone else already has registered with that e-mail address
$query = array(
'SELECT' => 'u.id, u.username',
'FROM' => 'users AS u',
'WHERE' => 'u.email=\''.$forum_db->escape($new_email).'\''
);
($hook = get_hook('pf_change_email_normal_qr_check_email_dupe')) ? eval($hook) : null;
$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);
if ($forum_db->num_rows($result))
{
($hook = get_hook('pf_change_email_normal_dupe_email')) ? eval($hook) : null;
if ($forum_config['p_allow_dupe_email'] == '0')
$errors[] = $lang_profile['Dupe e-mail'];
else if (($forum_config['o_mailing_list'] != '') && empty($errors))
{
while ($cur_dupe = $forum_db->fetch_assoc($result))
$dupe_list[] = $cur_dupe['username'];
$mail_subject = 'Alert - Duplicate e-mail detected';
$mail_message = 'User \''.$forum_user['username'].'\' changed to an e-mail address that also belongs to: '.implode(', ', $dupe_list)."\n\n".'User profile: '.forum_link($forum_url['user'], $id)."\n\n".'-- '."\n".'Forum Mailer'."\n".'(Do not reply to this message)';
forum_mail($forum_config['o_mailing_list'], $mail_subject, $mail_message);
}
}
// Did everything go according to plan?
if (empty($errors))
{
if ($forum_config['o_regs_verify'] != '1')
{
// We have no confirmed e-mail so we change e-mail right now
$query = array(
'UPDATE' => 'users',
'SET' => 'email=\''.$forum_db->escape($new_email).'\'',
'WHERE' => 'id='.$id
);
($hook = get_hook('pf_change_email_key_qr_update_email')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
redirect(forum_link($forum_url['profile_about'], $id), $lang_profile['E-mail updated redirect']);
}
// We have a confirmed e-mail so we going to send an activation link
$new_email_key = random_key(8, true);
// Save new e-mail and activation key
$query = array(
'UPDATE' => 'users',
'SET' => 'activate_string=\''.$forum_db->escape($new_email).'\', activate_key=\''.$new_email_key.'\'',
'WHERE' => 'id='.$id
);
($hook = get_hook('pf_change_email_normal_qr_update_email_activation')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
// Load the "activate e-mail" template
$mail_tpl = forum_trim(file_get_contents(FORUM_ROOT.'lang/'.$forum_user['language'].'/mail_templates/activate_email.tpl'));
// The first row contains the subject
$first_crlf = strpos($mail_tpl, "\n");
$mail_subject = forum_trim(substr($mail_tpl, 8, $first_crlf-8));
$mail_message = forum_trim(substr($mail_tpl, $first_crlf));
$mail_message = str_replace('', $forum_user['username'], $mail_message);
$mail_message = str_replace('', $base_url.'/', $mail_message);
$mail_message = str_replace('', str_replace('&', '&', forum_link($forum_url['change_email_key'], array($id, $new_email_key))), $mail_message);
$mail_message = str_replace('', sprintf($lang_common['Forum mailer'], $forum_config['o_board_title']), $mail_message);
($hook = get_hook('pf_change_email_normal_pre_activation_email_sent')) ? eval($hook) : null;
forum_mail($new_email, $mail_subject, $mail_message);
message(sprintf($lang_profile['Activate e-mail sent'], ''.forum_htmlencode($forum_config['o_admin_email']).' '));
}
}
// Is this users own profile
$forum_page['own_profile'] = ($forum_user['id'] == $id) ? true : false;
// Setup form
$forum_page['group_count'] = $forum_page['item_count'] = $forum_page['fld_count'] = 0;
$forum_page['form_action'] = forum_link($forum_url['change_email'], $id);
$forum_page['hidden_fields'] = array(
'form_sent' => ' ',
'csrf_token' => ' '
);
// Setup form information
$forum_page['frm_info'] = ''.$lang_profile['E-mail info'].'
';
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array(sprintf($lang_profile['Users profile'], $user['username'], $lang_profile['Section about']), forum_link($forum_url['profile_about'], $id)),
($forum_page['own_profile']) ? array($lang_profile['Change your e-mail'], forum_link($forum_url['change_email'], $id)) : array(sprintf($lang_profile['Change user e-mail'], forum_htmlencode($user['username'])), forum_link($forum_url['change_email'], $id))
);
($hook = get_hook('pf_change_email_normal_pre_header_load')) ? eval($hook) : null;
define('FORUM_PAGE', 'profile-changemail');
require FORUM_ROOT.'header.php';
// START SUBST -
ob_start();
($hook = get_hook('pf_change_email_normal_output_start')) ? eval($hook) : null;
?>
'.$cur_error.' ';
($hook = get_hook('pf_change_email_pre_errors')) ? eval($hook) : null;
?>
'.$lang_common['Required'].'') ?>
', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST -
require FORUM_ROOT.'footer.php';
}
else if ($action == 'delete_user' || isset($_POST['delete_user_comply']) || isset($_POST['cancel']))
{
// User pressed the cancel button
if (isset($_POST['cancel']))
redirect(forum_link($forum_url['profile_admin'], $id), $lang_common['Cancel redirect']);
($hook = get_hook('pf_delete_user_selected')) ? eval($hook) : null;
if ($forum_user['g_id'] != FORUM_ADMIN)
message($lang_common['No permission']);
if ($user['g_id'] == FORUM_ADMIN)
message($lang_profile['Cannot delete admin']);
if (isset($_POST['delete_user_comply']))
{
($hook = get_hook('pf_delete_user_form_submitted')) ? eval($hook) : null;
delete_user($id, isset($_POST['delete_posts']));
($hook = get_hook('pf_delete_user_pre_redirect')) ? eval($hook) : null;
redirect(forum_link($forum_url['index']), $lang_profile['User delete redirect']);
}
// Setup form
$forum_page['group_count'] = $forum_page['item_count'] = $forum_page['fld_count'] = 0;
$forum_page['form_action'] = forum_link($forum_url['delete_user'], $id);
// Setup form information
$forum_page['frm_info'] = array(
''.$lang_profile['Delete warning'].' ',
''.$lang_profile['Delete posts info'].' '
);
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array(sprintf($lang_profile['Users profile'], $user['username'], $lang_profile['Section admin']), forum_link($forum_url['profile_admin'], $id)),
array($lang_profile['Delete user'], forum_link($forum_url['delete_user'], $id))
);
($hook = get_hook('pf_delete_user_pre_header_load')) ? eval($hook) : null;
define('FORUM_PAGE', 'dialogue');
require FORUM_ROOT.'header.php';
// START SUBST -
ob_start();
($hook = get_hook('pf_delete_user_output_start')) ? eval($hook) : null;
?>
', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST -
require FORUM_ROOT.'footer.php';
}
else if ($action == 'delete_avatar')
{
// Make sure we are allowed to delete this user's avatar
if ($forum_user['id'] != $id &&
$forum_user['g_id'] != FORUM_ADMIN &&
($forum_user['g_moderator'] != '1' || $forum_user['g_mod_edit_users'] == '0' || $user['g_id'] == FORUM_ADMIN || $user['g_moderator'] == '1'))
message($lang_common['No permission']);
// We validate the CSRF token. If it's set in POST and we're at this point, the token is valid.
// If it's in GET, we need to make sure it's valid.
if (!isset($_POST['csrf_token']) && (!isset($_GET['csrf_token']) || $_GET['csrf_token'] !== generate_form_token('delete_avatar'.$id.$forum_user['id'])))
csrf_confirm_form();
($hook = get_hook('pf_delete_avatar_selected')) ? eval($hook) : null;
delete_avatar($id);
($hook = get_hook('pf_delete_avatar_pre_redirect')) ? eval($hook) : null;
redirect(forum_link($forum_url['profile_avatar'], $id), $lang_profile['Avatar deleted redirect']);
}
else if (isset($_POST['update_group_membership']))
{
if ($forum_user['g_id'] != FORUM_ADMIN)
message($lang_common['No permission']);
($hook = get_hook('pf_change_group_form_submitted')) ? eval($hook) : null;
$new_group_id = intval($_POST['group_id']);
$query = array(
'UPDATE' => 'users',
'SET' => 'group_id='.$new_group_id,
'WHERE' => 'id='.$id
);
($hook = get_hook('pf_change_group_qr_update_group')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
$query = array(
'SELECT' => 'g.g_moderator',
'FROM' => 'groups AS g',
'WHERE' => 'g.g_id='.$new_group_id
);
($hook = get_hook('pf_change_group_qr_check_new_group_mod')) ? eval($hook) : null;
$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);
$new_group_mod = $forum_db->result($result);
// If the user was a moderator or an administrator (and no longer is), we remove him/her from the moderator list in all forums
if (($user['g_id'] == FORUM_ADMIN || $user['g_moderator'] == '1') && $new_group_id != FORUM_ADMIN && $new_group_mod != '1')
clean_forum_moderators();
($hook = get_hook('pf_change_group_pre_redirect')) ? eval($hook) : null;
redirect(forum_link($forum_url['profile_admin'], $id), $lang_profile['Group membership redirect']);
}
else if (isset($_POST['update_forums']))
{
if ($forum_user['g_id'] != FORUM_ADMIN)
message($lang_common['No permission']);
($hook = get_hook('pf_forum_moderators_form_submitted')) ? eval($hook) : null;
$moderator_in = (isset($_POST['moderator_in'])) ? array_keys($_POST['moderator_in']) : array();
// Loop through all forums
$query = array(
'SELECT' => 'f.id, f.moderators',
'FROM' => 'forums AS f'
);
($hook = get_hook('pf_forum_moderators_qr_get_all_forum_mods')) ? eval($hook) : null;
$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);
while ($cur_forum = $forum_db->fetch_assoc($result))
{
$cur_moderators = ($cur_forum['moderators'] != '') ? unserialize($cur_forum['moderators']) : array();
// If the user should have moderator access (and he/she doesn't already have it)
if (in_array($cur_forum['id'], $moderator_in) && !in_array($id, $cur_moderators))
{
$cur_moderators[$user['username']] = $id;
ksort($cur_moderators);
}
// If the user shouldn't have moderator access (and he/she already has it)
else if (!in_array($cur_forum['id'], $moderator_in) && in_array($id, $cur_moderators))
unset($cur_moderators[$user['username']]);
$cur_moderators = (!empty($cur_moderators)) ? '\''.$forum_db->escape(serialize($cur_moderators)).'\'' : 'NULL';
$query = array(
'UPDATE' => 'forums',
'SET' => 'moderators='.$cur_moderators,
'WHERE' => 'id='.$cur_forum['id']
);
($hook = get_hook('pf_forum_moderators_qr_update_forum_moderators')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
}
($hook = get_hook('pf_forum_moderators_pre_redirect')) ? eval($hook) : null;
redirect(forum_link($forum_url['profile_admin'], $id), $lang_profile['Moderate forums redirect']);
}
else if (isset($_POST['ban']))
{
if ($forum_user['g_id'] != FORUM_ADMIN && ($forum_user['g_moderator'] != '1' || $forum_user['g_mod_ban_users'] == '0'))
message($lang_common['No permission']);
($hook = get_hook('pf_ban_user_selected')) ? eval($hook) : null;
redirect(forum_link($forum_url['admin_bans']).'?add_ban='.$id, $lang_profile['Ban redirect']);
}
else if (isset($_POST['form_sent']))
{
// Make sure we are allowed to edit this user's profile
if ($forum_user['id'] != $id &&
$forum_user['g_id'] != FORUM_ADMIN &&
($forum_user['g_moderator'] != '1' || $forum_user['g_mod_edit_users'] == '0' || $user['g_id'] == FORUM_ADMIN || $user['g_moderator'] == '1'))
message($lang_common['No permission']);
($hook = get_hook('pf_change_details_form_submitted')) ? eval($hook) : null;
// Extract allowed elements from $_POST['form']
function extract_elements($allowed_elements)
{
$form = array();
foreach ($_POST['form'] as $key => $value)
{
if (in_array($key, $allowed_elements))
$form[$key] = $value;
}
return $form;
}
$username_updated = false;
// Validate input depending on section
switch ($section)
{
case 'identity':
{
$form = extract_elements(array('realname', 'url', 'location', 'jabber', 'icq', 'msn', 'aim', 'yahoo'));
($hook = get_hook('pf_change_details_identity_validation')) ? eval($hook) : null;
if ($forum_user['is_admmod'])
{
// Are we allowed to change usernames?
if ($forum_user['g_id'] == FORUM_ADMIN || ($forum_user['g_moderator'] == '1' && $forum_user['g_mod_rename_users'] == '1'))
{
$form['username'] = forum_trim($_POST['req_username']);
$old_username = forum_trim($_POST['old_username']);
// Validate the new username
$errors = array_merge($errors, validate_username($form['username'], $id));
if ($form['username'] != $old_username)
$username_updated = true;
}
// We only allow administrators to update the post count
if ($forum_user['g_id'] == FORUM_ADMIN)
$form['num_posts'] = intval($_POST['num_posts']);
}
if ($forum_user['is_admmod'])
{
if (!defined('FORUM_EMAIL_FUNCTIONS_LOADED'))
require FORUM_ROOT.'include/email.php';
// Validate the email-address
$form['email'] = strtolower(forum_trim($_POST['req_email']));
if (!is_valid_email($form['email']))
$errors[] = $lang_common['Invalid e-mail'];
}
if ($forum_user['is_admmod'])
$form['admin_note'] = forum_trim($_POST['admin_note']);
if ($forum_user['g_id'] == FORUM_ADMIN)
$form['title'] = forum_trim($_POST['title']);
else if ($forum_user['g_set_title'] == '1')
{
$form['title'] = forum_trim($_POST['title']);
if ($form['title'] != '')
{
// A list of words that the title may not contain
// If the language is English, there will be some duplicates, but it's not the end of the world
$forbidden = array('Member', 'Moderator', 'Administrator', 'Banned', 'Guest', $lang_common['Member'], $lang_common['Moderator'], $lang_common['Administrator'], $lang_common['Banned'], $lang_common['Guest']);
if (in_array($form['title'], $forbidden))
$errors[] = $lang_profile['Forbidden title'];
}
}
// Add http:// if the URL doesn't contain it or https:// already
if ($form['url'] != '' && strpos(strtolower($form['url']), 'http://') !== 0 && strpos(strtolower($form['url']), 'https://') !== 0)
$form['url'] = 'http://'.$form['url'];
// If the ICQ UIN contains anything other than digits it's invalid
if ($form['icq'] != '' && !ctype_digit($form['icq']))
$errors[] = $lang_profile['Bad ICQ'];
break;
}
case 'settings':
{
$form = extract_elements(array('dst', 'timezone', 'language', 'email_setting', 'notify_with_post', 'auto_notify', 'time_format', 'date_format', 'disp_topics', 'disp_posts', 'show_smilies', 'show_img', 'show_img_sig', 'show_avatars', 'show_sig', 'style'));
($hook = get_hook('pf_change_details_settings_validation')) ? eval($hook) : null;
$form['dst'] = (isset($form['dst'])) ? 1 : 0;
$form['time_format'] = (isset($form['time_format'])) ? intval($form['time_format']) : 0;
$form['date_format'] = (isset($form['date_format'])) ? intval($form['date_format']) : 0;
$form['email_setting'] = intval($form['email_setting']);
if ($form['email_setting'] < 0 && $form['email_setting'] > 2) $form['email_setting'] = 1;
if ($forum_config['o_subscriptions'] == '1')
{
if (!isset($form['notify_with_post']) || $form['notify_with_post'] != '1') $form['notify_with_post'] = '0';
if (!isset($form['auto_notify']) || $form['auto_notify'] != '1') $form['auto_notify'] = '0';
}
// Make sure we got a valid language string
if (isset($form['language']))
{
$form['language'] = preg_replace('#[\.\\\/]#', '', $form['language']);
if (!file_exists(FORUM_ROOT.'lang/'.$form['language'].'/common.php'))
message($lang_common['Bad request']);
}
if ($form['disp_topics'] != '' && intval($form['disp_topics']) < 3) $form['disp_topics'] = 3;
if ($form['disp_topics'] != '' && intval($form['disp_topics']) > 75) $form['disp_topics'] = 75;
if ($form['disp_posts'] != '' && intval($form['disp_posts']) < 3) $form['disp_posts'] = 3;
if ($form['disp_posts'] != '' && intval($form['disp_posts']) > 75) $form['disp_posts'] = 75;
if (!isset($form['show_smilies']) || $form['show_smilies'] != '1') $form['show_smilies'] = '0';
if (!isset($form['show_img']) || $form['show_img'] != '1') $form['show_img'] = '0';
if (!isset($form['show_img_sig']) || $form['show_img_sig'] != '1') $form['show_img_sig'] = '0';
if (!isset($form['show_avatars']) || $form['show_avatars'] != '1') $form['show_avatars'] = '0';
if (!isset($form['show_sig']) || $form['show_sig'] != '1') $form['show_sig'] = '0';
// Make sure we got a valid style string
if (isset($form['style']))
{
$form['style'] = preg_replace('#[\.\\\/]#', '', $form['style']);
if (!file_exists(FORUM_ROOT.'style/'.$form['style'].'/'.$form['style'].'.php'))
message($lang_common['Bad request']);
}
break;
}
case 'signature':
{
if ($forum_config['o_signatures'] == '0')
message($lang_profile['Signatures disabled']);
($hook = get_hook('pf_change_details_signature_validation')) ? eval($hook) : null;
// Clean up signature from POST
$form['signature'] = forum_linebreaks(forum_trim($_POST['signature']));
// Validate signature
if (utf8_strlen($form['signature']) > $forum_config['p_sig_length'])
$errors[] = sprintf($lang_profile['Sig too long'], forum_number_format($forum_config['p_sig_length']), forum_number_format(utf8_strlen($form['signature']) - $forum_config['p_sig_length']));
if (substr_count($form['signature'], "\n") > ($forum_config['p_sig_lines'] - 1))
$errors[] = sprintf($lang_profile['Sig too many lines'], forum_number_format($forum_config['p_sig_lines']));
if ($form['signature'] != '' && $forum_config['p_sig_all_caps'] == '0' && utf8_strtoupper($form['signature']) == $form['signature'] && !$forum_user['is_admmod'])
$form['signature'] = utf8_ucwords(utf8_strtolower($form['signature']));
// Validate BBCode syntax
if ($forum_config['p_sig_bbcode'] == '1' || $forum_config['o_make_links'] == '1')
{
if (!defined('FORUM_PARSER_LOADED'))
require FORUM_ROOT.'include/parser.php';
$form['signature'] = preparse_bbcode($form['signature'], $errors, true);
}
break;
}
case 'avatar':
{
if ($forum_config['o_avatars'] == '0')
message($lang_profile['Avatars disabled']);
($hook = get_hook('pf_change_details_avatar_validation')) ? eval($hook) : null;
if (!isset($_FILES['req_file']))
{
$errors[] = $lang_profile['No file'];
break;
}
else
$uploaded_file = $_FILES['req_file'];
// Make sure the upload went smooth
if (isset($uploaded_file['error']) && empty($errors))
{
switch ($uploaded_file['error'])
{
case 1: // UPLOAD_ERR_INI_SIZE
case 2: // UPLOAD_ERR_FORM_SIZE
$errors[] = $lang_profile['Too large ini'];
break;
case 3: // UPLOAD_ERR_PARTIAL
$errors[] = $lang_profile['Partial upload'];
break;
case 4: // UPLOAD_ERR_NO_FILE
$errors[] = $lang_profile['No file'];
break;
case 6: // UPLOAD_ERR_NO_TMP_DIR
$errors[] = $lang_profile['No tmp directory'];
break;
default:
// No error occured, but was something actually uploaded?
if ($uploaded_file['size'] == 0)
$errors[] = $lang_profile['No file'];
break;
}
}
if (is_uploaded_file($uploaded_file['tmp_name']) && empty($errors))
{
$allowed_types = array('image/gif', 'image/jpeg', 'image/pjpeg', 'image/png', 'image/x-png');
($hook = get_hook('pf_change_details_avatar_allowed_types')) ? eval($hook) : null;
if (!in_array($uploaded_file['type'], $allowed_types))
$errors[] = $lang_profile['Bad type'];
else
{
// Make sure the file isn't too big
if ($uploaded_file['size'] > $forum_config['o_avatars_size'])
$errors[] = sprintf($lang_profile['Too large'], forum_number_format($forum_config['o_avatars_size']));
}
if (empty($errors))
{
// Determine type
$extension = null;
if ($uploaded_file['type'] == 'image/gif')
$extension = '.gif';
else if ($uploaded_file['type'] == 'image/jpeg' || $uploaded_file['type'] == 'image/pjpeg')
$extension = '.jpg';
else
$extension = '.png';
($hook = get_hook('pf_change_details_avatar_determine_extension')) ? eval($hook) : null;
// Move the file to the avatar directory. We do this before checking the width/height to circumvent open_basedir restrictions.
if (!@move_uploaded_file($uploaded_file['tmp_name'], $forum_config['o_avatars_dir'].'/'.$id.'.tmp'))
$errors[] = sprintf($lang_profile['Move failed'], ''.forum_htmlencode($forum_config['o_admin_email']).' ');
if (empty($errors))
{
($hook = get_hook('pf_change_details_avatar_modify_size')) ? eval($hook) : null;
// Now check the width/height
list($width, $height, $type,) = getimagesize($forum_config['o_avatars_dir'].'/'.$id.'.tmp');
if (empty($width) || empty($height) || $width > $forum_config['o_avatars_width'] || $height > $forum_config['o_avatars_height'])
{
@unlink($forum_config['o_avatars_dir'].'/'.$id.'.tmp');
$errors[] = sprintf($lang_profile['Too wide or high'], $forum_config['o_avatars_width'], $forum_config['o_avatars_height']);
}
else if ($type == 1 && $uploaded_file['type'] != 'image/gif') // Prevent dodgy uploads
{
@unlink($forum_config['o_avatars_dir'].'/'.$id.'.tmp');
$errors[] = $lang_profile['Bad type'];
}
($hook = get_hook('pf_change_details_avatar_validate_file')) ? eval($hook) : null;
if (empty($errors))
{
// Delete any old avatars
delete_avatar($id);
// Put the new avatar in its place
@rename($forum_config['o_avatars_dir'].'/'.$id.'.tmp', $forum_config['o_avatars_dir'].'/'.$id.$extension);
@chmod($forum_config['o_avatars_dir'].'/'.$id.$extension, 0644);
}
}
}
}
else if (empty($errors))
$errors[] = $lang_profile['Unknown failure'];
break;
}
default:
{
($hook = get_hook('pf_change_details_new_section_validation')) ? eval($hook) : null;
break;
}
}
$skip_db_update_sections = array('avatar');
($hook = get_hook('pf_change_details_pre_database_validation')) ? eval($hook) : null;
// All sections apart from avatar potentially affect the database
if (!in_array($section, $skip_db_update_sections) && empty($errors))
{
($hook = get_hook('pf_change_details_database_validation')) ? eval($hook) : null;
// Singlequotes around non-empty values and NULL for empty values
$new_values = array();
foreach ($form as $key => $input)
{
$value = ($input !== '') ? '\''.$forum_db->escape($input).'\'' : 'NULL';
$new_values[] = $key.'='.$value;
}
// Make sure we have something to update
if (empty($new_values))
message($lang_common['Bad request']);
// Run the update
$query = array(
'UPDATE' => 'users',
'SET' => implode(',', $new_values),
'WHERE' => 'id='.$id
);
($hook = get_hook('pf_change_details_qr_update_user')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
// If we changed the username we have to update some stuff
if ($username_updated)
{
($hook = get_hook('pf_change_details_username_changed')) ? eval($hook) : null;
$query = array(
'UPDATE' => 'posts',
'SET' => 'poster=\''.$forum_db->escape($form['username']).'\'',
'WHERE' => 'poster_id='.$id
);
($hook = get_hook('pf_change_details_qr_update_posts_poster')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
$query = array(
'UPDATE' => 'topics',
'SET' => 'poster=\''.$forum_db->escape($form['username']).'\'',
'WHERE' => 'poster=\''.$forum_db->escape($old_username).'\''
);
($hook = get_hook('pf_change_details_qr_update_topics_poster')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
$query = array(
'UPDATE' => 'topics',
'SET' => 'last_poster=\''.$forum_db->escape($form['username']).'\'',
'WHERE' => 'last_poster=\''.$forum_db->escape($old_username).'\''
);
($hook = get_hook('pf_change_details_qr_update_topics_last_poster')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
$query = array(
'UPDATE' => 'forums',
'SET' => 'last_poster=\''.$forum_db->escape($form['username']).'\'',
'WHERE' => 'last_poster=\''.$forum_db->escape($old_username).'\''
);
($hook = get_hook('pf_change_details_qr_update_forums_last_poster')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
$query = array(
'UPDATE' => 'online',
'SET' => 'ident=\''.$forum_db->escape($form['username']).'\'',
'WHERE' => 'ident=\''.$forum_db->escape($old_username).'\''
);
($hook = get_hook('pf_change_details_qr_update_online_ident')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
$query = array(
'UPDATE' => 'posts',
'SET' => 'edited_by=\''.$forum_db->escape($form['username']).'\'',
'WHERE' => 'edited_by=\''.$forum_db->escape($old_username).'\''
);
($hook = get_hook('pf_change_details_qr_update_posts_edited_by')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
// If the user is a moderator or an administrator we have to update the moderator lists and bans cache
if ($user['g_id'] == FORUM_ADMIN || $user['g_moderator'] == '1')
{
$query = array(
'SELECT' => 'f.id, f.moderators',
'FROM' => 'forums AS f'
);
($hook = get_hook('pf_change_details_qr_get_all_forum_mods')) ? eval($hook) : null;
$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);
while ($cur_forum = $forum_db->fetch_assoc($result))
{
$cur_moderators = ($cur_forum['moderators'] != '') ? unserialize($cur_forum['moderators']) : array();
if (in_array($id, $cur_moderators))
{
unset($cur_moderators[$old_username]);
$cur_moderators[$form['username']] = $id;
ksort($cur_moderators);
$query = array(
'UPDATE' => 'forums',
'SET' => 'moderators=\''.$forum_db->escape(serialize($cur_moderators)).'\'',
'WHERE' => 'id='.$cur_forum['id']
);
($hook = get_hook('pf_change_details_qr_update_forum_moderators')) ? eval($hook) : null;
$forum_db->query_build($query) or error(__FILE__, __LINE__);
}
}
// Regenerate the bans cache
if (!defined('FORUM_CACHE_FUNCTIONS_LOADED'))
require FORUM_ROOT.'include/cache.php';
generate_bans_cache();
}
}
($hook = get_hook('pf_change_details_pre_redirect')) ? eval($hook) : null;
redirect(forum_link($forum_url['profile_'.$section], $id), $lang_profile['Profile redirect']);
}
}
($hook = get_hook('pf_new_action')) ? eval($hook) : null;
if ($user['signature'] != '')
{
if (!defined('FORUM_PARSER_LOADED'))
require FORUM_ROOT.'include/parser.php';
$parsed_signature = parse_signature($user['signature']);
}
// View or edit?
if ($forum_user['id'] != $id &&
$forum_user['g_id'] != FORUM_ADMIN &&
($forum_user['g_moderator'] != '1' || $forum_user['g_mod_edit_users'] == '0' || $user['g_id'] == FORUM_ADMIN || $user['g_moderator'] == '1'))
{
// Setup user identification
$forum_page['user_ident'] = array();
($hook = get_hook('pf_view_details_selected')) ? eval($hook) : null;
$forum_page['user_ident']['username'] = ''.forum_htmlencode($user['username']).' ';
if ($forum_config['o_avatars'] == '1')
{
$forum_page['avatar_markup'] = generate_avatar_markup($id);
if (!empty($forum_page['avatar_markup']))
$forum_page['user_ident']['avatar'] = ''.$forum_page['avatar_markup'].' ';
}
$forum_page['user_ident']['usertitle'] = ''.get_title($user).' ';
// Setup user information
$forum_page['user_info'] = array();
if ($user['realname'] !='')
$forum_page['user_info']['realname'] = ''.$lang_profile['Realname'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1') ? censor_words($user['realname']) : $user['realname']).' ';
if ($user['location'] !='')
$forum_page['user_info']['location'] = ''.$lang_profile['From'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1') ? censor_words($user['location']) : $user['location']).' ';
$forum_page['user_info']['registered'] = ''.$lang_profile['Registered'].': '.format_time($user['registered'], 1).' ';
$forum_page['user_info']['lastpost'] = ''.$lang_profile['Last post'].': '.format_time($user['last_post']).' ';
if ($forum_config['o_show_post_count'] == '1' || $forum_user['is_admmod'])
$forum_page['user_info']['posts'] = ''.$lang_profile['Posts'].': '.forum_number_format($user['num_posts']).' ';
// Setup user address
$forum_page['user_contact'] = array();
if ($user['email_setting'] == '0' && !$forum_user['is_guest'] && $forum_user['g_send_email'] == '1')
$forum_page['user_contact']['email'] = ''.$lang_profile['E-mail'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1' ? censor_words($user['email']) : $user['email'])).' ';
if ($user['email_setting'] != '2' && !$forum_user['is_guest'] && $forum_user['g_send_email'] == '1')
$forum_page['user_contact']['forum-mail'] = ''.$lang_profile['E-mail'].': '.$lang_profile['Send forum e-mail'].' ';
if ($user['url'] != '')
{
if ($forum_config['o_censoring'] == '1')
$user['url'] = censor_words($user['url']);
$user['url'] = forum_htmlencode($user['url']);
$forum_page['url'] = ''.$user['url'].' ';
$forum_page['user_contact']['website'] = ''.$lang_profile['Website'].': '.$forum_page['url'].' ';
}
if ($user['jabber'] !='')
$forum_page['user_contact']['jabber'] = ''.$lang_profile['Jabber'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1') ? censor_words($user['jabber']) : $user['jabber']).' ';
if ($user['icq'] !='')
$forum_page['user_contact']['icq'] = ''.$lang_profile['ICQ'].': '.forum_htmlencode($user['icq']).' ';
if ($user['msn'] !='')
$forum_page['user_contact']['msn'] = ''.$lang_profile['MSN'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1') ? censor_words($user['msn']) : $user['msn']).' ';
if ($user['aim'] !='')
$forum_page['user_contact']['aim'] = ''.$lang_profile['AOL IM'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1') ? censor_words($user['aim']) : $user['aim']).' ';
if ($user['yahoo'] !='')
$forum_page['user_contact']['yahoo'] = ''.$lang_profile['Yahoo'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1') ? censor_words($user['yahoo']) : $user['yahoo']).' ';
// Setup signature demo
if ($forum_config['o_signatures'] == '1' && isset($parsed_signature))
$forum_page['sig_demo'] = $parsed_signature;
// Setup search links
if ($forum_user['g_search'] == '1')
{
$forum_page['user_activity'] = array();
$forum_page['user_activity']['search_posts'] = ''.sprintf($lang_profile['View user posts'], forum_htmlencode($user['username'])).' ';
$forum_page['user_activity']['search_topics'] = ''.sprintf($lang_profile['View user topics'], forum_htmlencode($user['username'])).' ';
}
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array(sprintf($lang_profile['Users profile'], $user['username']), forum_link($forum_url['user'], $id))
);
$forum_page['group_count'] = $forum_page['item_count'] = $forum_page['fld_count'] = 0;
($hook = get_hook('pf_view_details_pre_header_load')) ? eval($hook) : null;
define('FORUM_ALLOW_INDEX', 1);
define('FORUM_PAGE', 'profile');
require FORUM_ROOT.'header.php';
// START SUBST -
ob_start();
($hook = get_hook('pf_view_details_output_start')) ? eval($hook) : null;
?>
', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST -
require FORUM_ROOT.'footer.php';
}
else
{
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array(sprintf($lang_profile['Users profile'], $user['username']), forum_link($forum_url['user'], $id))
);
// Is this users own profile
$forum_page['own_profile'] = ($forum_user['id'] == $id) ? true : false;
// Setup navigation menu
$forum_page['main_menu'] = array();
$forum_page['main_menu']['about'] = ''.$lang_profile['Section about'].' ';
$forum_page['main_menu']['identity'] = ''.$lang_profile['Section identity'].' ';
$forum_page['main_menu']['settings'] = ''.$lang_profile['Section settings'].' ';
if ($forum_config['o_signatures'] == '1')
$forum_page['main_menu']['signature'] = ''.$lang_profile['Section signature'].' ';
if ($forum_config['o_avatars'] == '1')
$forum_page['main_menu']['avatar'] = ''.$lang_profile['Section avatar'].' ';
if ($forum_user['g_id'] == FORUM_ADMIN || ($forum_user['g_moderator'] == '1' && $forum_user['g_mod_ban_users'] == '1' && !$forum_page['own_profile']))
$forum_page['main_menu']['admin'] = ''.$lang_profile['Section admin'].' ';
($hook = get_hook('pf_change_details_modify_main_menu')) ? eval($hook) : null;
// End navigation menu
if ($section == 'about')
{
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array(sprintf($lang_profile['Users profile'], $user['username']), forum_link($forum_url['user'], $id)),
array(sprintf($lang_profile['Section about']), forum_link($forum_url['profile_about'], $id)),
);
// Setup user identification
$forum_page['user_ident'] = array();
($hook = get_hook('pf_change_details_about_selected')) ? eval($hook) : null;
$forum_page['user_ident']['username'] = ''.forum_htmlencode($user['username']).' ';
if ($forum_config['o_avatars'] == '1')
{
$forum_page['avatar_markup'] = generate_avatar_markup($id);
if (!empty($forum_page['avatar_markup']))
$forum_page['user_ident']['avatar'] = ''.$forum_page['avatar_markup'].' ';
}
$forum_page['user_ident']['usertitle'] = ''.get_title($user).' ';
// Create array for private information
$forum_page['user_private'] = array();
// Setup user information
$forum_page['user_info'] = array();
if ($user['realname'] !='')
$forum_page['user_info']['realname'] = ''.$lang_profile['Realname'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1') ? censor_words($user['realname']) : $user['realname']).' ';
if ($user['location'] !='')
$forum_page['user_info']['location'] = ''.$lang_profile['From'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1') ? censor_words($user['location']) : $user['location']).' ';
$forum_page['user_info']['registered'] = ''.$lang_profile['Registered'].': '.format_time($user['registered'], 1).' ';
$forum_page['user_info']['lastpost'] = ''.$lang_profile['Last post'].': '.format_time($user['last_post']).' ';
if ($forum_config['o_show_post_count'] == '1' || $forum_user['is_admmod'])
$forum_page['user_info']['posts'] = ''.$lang_profile['Posts'].': '.forum_number_format($user['num_posts']).' ';
else
$forum_page['user_private']['posts'] = ''.$lang_profile['Posts'].': '.forum_number_format($user['num_posts']).' ';
if ($forum_user['is_admmod'] && $user['admin_note'] != '')
$forum_page['user_private']['note'] = ''.$lang_profile['Note'].': '.forum_htmlencode($user['admin_note']).' ';
// Setup user address
$forum_page['user_contact'] = array();
if (($user['email_setting'] == '0' && !$forum_user['is_guest']) && $forum_user['g_send_email'] == '1')
$forum_page['user_contact']['email'] = ''.$lang_profile['E-mail'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1' ? censor_words($user['email']) : $user['email'])).' ';
else if ($forum_page['own_profile'] || $forum_user['is_admmod'])
$forum_page['user_private']['email'] = ''.$lang_profile['E-mail'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1' ? censor_words($user['email']) : $user['email'])).' ';
if ($user['email_setting'] != '2')
$forum_page['user_contact']['forum-mail'] = ''.$lang_profile['E-mail'].': '.$lang_profile['Send forum e-mail'].' ';
else if ($forum_user['id'] == $id || ($forum_user['is_admmod'] && $user['email_setting'] == '2'))
$forum_page['user_private']['forum-mail'] = ''.$lang_profile['E-mail'].': '.$lang_profile['Send forum e-mail'].' ';
if ($user['url'] != '')
{
$user['url'] = forum_htmlencode($user['url']);
if ($forum_config['o_censoring'] == '1')
$user['url'] = censor_words($user['url']);
$forum_page['url'] = ''.$user['url'].' ';
$forum_page['user_contact']['website'] = ''.$lang_profile['Website'].': '.$forum_page['url'].' ';
}
if ($forum_user['is_admmod'])
$forum_page['user_private']['ip']= ''.$lang_profile['IP'].': '.forum_htmlencode($user['registration_ip']).' ';
// Setup user messaging
if ($user['jabber'] !='')
$forum_page['user_contact']['jabber'] = ''.$lang_profile['Jabber'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1') ? censor_words($user['jabber']) : $user['jabber']).' ';
if ($user['icq'] !='')
$forum_page['user_contact']['icq'] = ''.$lang_profile['ICQ'].': '.forum_htmlencode($user['icq']).' ';
if ($user['msn'] !='')
$forum_page['user_contact']['msn'] = ''.$lang_profile['MSN'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1') ? censor_words($user['msn']) : $user['msn']).' ';
if ($user['aim'] !='')
$forum_page['user_contact']['aim'] = ''.$lang_profile['AOL IM'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1') ? censor_words($user['aim']) : $user['aim']).' ';
if ($user['yahoo'] !='')
$forum_page['user_contact']['yahoo'] = ''.$lang_profile['Yahoo'].': '.forum_htmlencode(($forum_config['o_censoring'] == '1') ? censor_words($user['yahoo']) : $user['yahoo']).' ';
// Setup signature demo
if ($forum_config['o_signatures'] == '1' && isset($parsed_signature))
$forum_page['sig_demo'] = $parsed_signature;
// Setup search links
$forum_page['user_activity'] = array();
if ($forum_user['g_search'] == '1' || $forum_user['is_admmod'])
{
$forum_page['user_activity']['search_posts'] = ''.(($forum_page['own_profile']) ? $lang_profile['View your posts'] : sprintf($lang_profile['View user posts'], forum_htmlencode($user['username']))).' ';
$forum_page['user_activity']['search_topics'] = ''.(($forum_page['own_profile']) ? $lang_profile['View your topics'] : sprintf($lang_profile['View user topics'], forum_htmlencode($user['username']))).' ';
}
if (($forum_page['own_profile'] || $forum_user['g_id'] == FORUM_ADMIN) && $forum_config['o_subscriptions'] == '1')
$forum_page['user_activity']['search_subs'] = ''.(($forum_page['own_profile']) ? $lang_profile['View your subscriptions'] : sprintf($lang_profile['View user subscriptions'], forum_htmlencode($user['username']))).' ';
// Setup user options
$forum_page['user_options'] = array();
if ($forum_page['own_profile'] || $forum_user['g_id'] == FORUM_ADMIN || ($forum_user['g_moderator'] == '1' && $forum_user['g_mod_change_passwords'] == '1'))
$forum_page['user_options']['change_password'] = ''.(($forum_page['own_profile']) ? $lang_profile['Change your password'] : sprintf($lang_profile['Change user password'], forum_htmlencode($user['username']))).' ';
if (!$forum_user['is_admmod'])
$forum_page['user_options']['change_email'] = ''.(($forum_page['own_profile']) ? $lang_profile['Change your e-mail'] : sprintf($lang_profile['Change user e-mail'], forum_htmlencode($user['username']))).' ';
$forum_page['group_count'] = $forum_page['item_count'] = $forum_page['fld_count'] = 0;
($hook = get_hook('pf_change_details_about_pre_header_load')) ? eval($hook) : null;
define('FORUM_PAGE', 'profile-about');
require FORUM_ROOT.'header.php';
// START SUBST -
ob_start();
($hook = get_hook('pf_change_details_about_output_start')) ? eval($hook) : null;
?>
', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST -
require FORUM_ROOT.'footer.php';
}
else if ($section == 'identity')
{
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array(sprintf($lang_profile['Users profile'], $user['username']), forum_link($forum_url['user'], $id)),
array($lang_profile['Section identity'],forum_link($forum_url['profile_identity'], $id))
);
// Setup the form
$forum_page['group_count'] = $forum_page['item_count'] = $forum_page['fld_count'] = 0;
$forum_page['form_action'] = forum_link($forum_url['profile_identity'], $id);
$forum_page['hidden_fields'] = array(
'form_sent' => ' ',
'csrf_token' => ' '
);
if ($forum_user['is_admmod'] && ($forum_user['g_id'] == FORUM_ADMIN || $forum_user['g_mod_rename_users'] == '1'))
$forum_page['hidden_fields']['old_username'] = ' ';
// Does the form have required fields
$forum_page['has_required'] = ((($forum_user['is_admmod'] && ($forum_user['g_id'] == FORUM_ADMIN || $forum_user['g_mod_rename_users'] == '1')) || $forum_user['is_admmod']) ? true : false);
($hook = get_hook('pf_change_details_identity_pre_header_load')) ? eval($hook) : null;
define('FORUM_PAGE', 'profile-identity');
require FORUM_ROOT.'header.php';
// START SUBST -
ob_start();
($hook = get_hook('pf_change_details_identity_output_start')) ? eval($hook) : null;
?>
'.$cur_error.' ';
($hook = get_hook('pf_change_details_identity_pre_errors')) ? eval($hook) : null;
?>
'.$lang_common['Required'].'') ?>
', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST -
require FORUM_ROOT.'footer.php';
}
else if ($section == 'settings')
{
$forum_page['styles'] = array();
$forum_page['d'] = dir(FORUM_ROOT.'style');
while (($forum_page['entry'] = $forum_page['d']->read()) !== false)
{
if ($forum_page['entry'] != '.' && $forum_page['entry'] != '..' && is_dir(FORUM_ROOT.'style/'.$forum_page['entry']) && file_exists(FORUM_ROOT.'style/'.$forum_page['entry'].'/'.$forum_page['entry'].'.php'))
$forum_page['styles'][] = $forum_page['entry'];
}
$forum_page['d']->close();
$forum_page['languages'] = array();
$forum_page['d'] = dir(FORUM_ROOT.'lang');
while (($forum_page['entry'] = $forum_page['d']->read()) !== false)
{
if ($forum_page['entry'] != '.' && $forum_page['entry'] != '..' && is_dir(FORUM_ROOT.'lang/'.$forum_page['entry']) && file_exists(FORUM_ROOT.'lang/'.$forum_page['entry'].'/common.php'))
$forum_page['languages'][] = $forum_page['entry'];
}
$forum_page['d']->close();
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array(sprintf($lang_profile['Users profile'], $user['username']), forum_link($forum_url['user'], $id)),
array($lang_profile['Section settings'],forum_link($forum_url['profile_settings'], $id))
);
// Setup the form
$forum_page['group_count'] = $forum_page['item_count'] = $forum_page['fld_count'] = 0;
$forum_page['form_action'] = forum_link($forum_url['profile_settings'], $id);
$forum_page['hidden_fields'] = array(
'form_sent' => ' ',
'csrf_token' => ' '
);
($hook = get_hook('pf_change_details_settings_pre_header_load')) ? eval($hook) : null;
define('FORUM_PAGE', 'profile-settings');
require FORUM_ROOT.'header.php';
// START SUBST -
ob_start();
($hook = get_hook('pf_change_details_settings_output_start')) ? eval($hook) : null;
?>
', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST -
require FORUM_ROOT.'footer.php';
}
else if ($section == 'signature' && $forum_config['o_signatures'] == '1')
{
$forum_page['sig_info'][] = ''.$lang_profile['Signature info'].' ';
if ($user['signature'] != '')
$forum_page['sig_demo'] = $parsed_signature;
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array(sprintf($lang_profile['Users profile'], $user['username']), forum_link($forum_url['user'], $id)),
array($lang_profile['Section signature'],forum_link($forum_url['profile_signature'], $id))
);
// Setup the form
$forum_page['group_count'] = $forum_page['item_count'] = $forum_page['fld_count'] = 0;
$forum_page['form_action'] = forum_link($forum_url['profile_signature'], $id);
$forum_page['hidden_fields'] = array(
'form_sent' => ' ',
'csrf_token' => ' '
);
// Setup help
$forum_page['text_options'] = array();
if ($forum_config['p_sig_bbcode'] == '1')
$forum_page['text_options']['bbcode'] = ''.$lang_common['BBCode'].' ';
if ($forum_config['p_sig_img_tag'] == '1')
$forum_page['text_options']['img'] = ''.$lang_common['Images'].' ';
if ($forum_config['o_smilies_sig'] == '1')
$forum_page['text_options']['smilies'] = ''.$lang_common['Smilies'].' ';
($hook = get_hook('pf_change_details_signature_pre_header_load')) ? eval($hook) : null;
define('FORUM_PAGE', 'profile-signature');
require FORUM_ROOT.'header.php';
// START SUBST -
ob_start();
($hook = get_hook('pf_change_details_signature_output_start')) ? eval($hook) : null;
?>
'.sprintf($lang_common['You may use'], implode(' ', $forum_page['text_options'])).''."\n";
// If there were any errors, show them
if (!empty($errors))
{
$forum_page['errors'] = array();
foreach ($errors as $cur_error)
$forum_page['errors'][] = '
'.$cur_error.' ';
($hook = get_hook('pf_change_details_signature_pre_errors')) ? eval($hook) : null;
?>
', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST -
require FORUM_ROOT.'footer.php';
}
else if ($section == 'avatar' && $forum_config['o_avatars'] == '1')
{
$forum_page['avatar_markup'] = generate_avatar_markup($id);
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array(sprintf($lang_profile['Users profile'], $user['username']), forum_link($forum_url['user'], $id)),
array($lang_profile['Section avatar'],forum_link($forum_url['profile_avatar'], $id))
);
// Setup the form
$forum_page['group_count'] = $forum_page['item_count'] = $forum_page['fld_count'] = 0;
$forum_page['form_action'] = forum_link($forum_url['profile_avatar'], $id);
$forum_page['hidden_fields'] = array(
'form_sent' => ' ',
'max_file_size' => ' ',
'csrf_token' => ' '
);
// Setup form information
$forum_page['frm_info'] = array();
if (!empty($forum_page['avatar_markup']))
{
$forum_page['frm_info']['avatar_replace'] = ''.$lang_profile['Avatar info replace'].' ';
$forum_page['frm_info']['avatar_type'] = ''.$lang_profile['Avatar info type'].' ';
$forum_page['frm_info']['avatar_size'] = ''.sprintf($lang_profile['Avatar info size'], $forum_config['o_avatars_width'], $forum_config['o_avatars_height'], forum_number_format($forum_config['o_avatars_size']), forum_number_format(ceil($forum_config['o_avatars_size'] / 1024))).' ';
$forum_page['avatar_demo'] = $forum_page['avatar_markup'];
}
else
{
$forum_page['frm_info']['avatar_none'] = ''.$lang_profile['Avatar info none'].' ';
$forum_page['frm_info']['avatar_info'] = ''.$lang_profile['Avatar info type'].' ';
$forum_page['frm_info']['avatar_size'] = ''.sprintf($lang_profile['Avatar info size'], $forum_config['o_avatars_width'], $forum_config['o_avatars_height'], forum_number_format($forum_config['o_avatars_size']), forum_number_format(ceil($forum_config['o_avatars_size'] / 1024))).' ';
}
($hook = get_hook('pf_change_details_avatar_pre_header_load')) ? eval($hook) : null;
define('FORUM_PAGE', 'profile-avatar');
require FORUM_ROOT.'header.php';
// START SUBST -
ob_start();
($hook = get_hook('pf_change_details_avatar_output_start')) ? eval($hook) : null;
?>
'.$cur_error.' ';
($hook = get_hook('pf_change_details_avatar_pre_errors')) ? eval($hook) : null;
?>
'.$lang_profile['Delete avatar info'].' ' : $lang_profile['No avatar info'] ?>
', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST -
require FORUM_ROOT.'footer.php';
}
else if ($section == 'admin')
{
if ($forum_user['g_id'] != FORUM_ADMIN && ($forum_user['g_moderator'] != '1' || $forum_user['g_mod_ban_users'] == '0' || $forum_user['id'] == $id))
message($lang_common['Bad request']);
// Setup breadcrumbs
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['index'])),
array(sprintf($lang_profile['Users profile'], $user['username']), forum_link($forum_url['user'], $id)),
array($lang_profile['Section admin'],forum_link($forum_url['profile_admin'], $id))
);
// Setup form
$forum_page['group_count'] = $forum_page['item_count'] = $forum_page['fld_count'] = 0;
$forum_page['form_action'] = forum_link($forum_url['profile_admin'], $id);
$forum_page['hidden_fields'] = array(
'form_sent' => ' ',
'csrf_token' => ' '
);
// Setup ban and delete options
$forum_page['user_management'] = array();
if ($forum_user['g_moderator'] == '1')
$forum_page['user_management']['ban'] = ''."\n\t\t\t\t".'
'."\n\t\t\t".'
';
else if ($forum_user['g_moderator'] != '1' && $user['g_id'] != FORUM_ADMIN )
{
$forum_page['user_management']['ban'] = ''."\n\t\t\t\t".'
'."\n\t\t\t".'
';
$forum_page['user_management']['delete'] = ''."\n\t\t\t\t".'
'."\n\t\t\t".'
';
}
($hook = get_hook('pf_change_details_admin_pre_header_load')) ? eval($hook) : null;
define('FORUM_PAGE', 'profile-admin');
require FORUM_ROOT.'header.php';
// START SUBST -
ob_start();
($hook = get_hook('pf_change_details_admin_output_start')) ? eval($hook) : null;
?>
'g.g_id, g.g_title',
'FROM' => 'groups AS g',
'WHERE' => 'g.g_id!='.FORUM_GUEST,
'ORDER BY' => 'g.g_title'
);
($hook = get_hook('pf_change_details_admin_qr_get_groups')) ? eval($hook) : null;
$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);
while ($cur_group = $forum_db->fetch_assoc($result))
{
if ($cur_group['g_id'] == $user['g_id'] || ($cur_group['g_id'] == $forum_config['o_default_user_group'] && $user['g_id'] == ''))
echo "\t\t\t\t\t\t".''.forum_htmlencode($cur_group['g_title']).' '."\n";
else
echo "\t\t\t\t\t\t".''.forum_htmlencode($cur_group['g_title']).' '."\n";
}
?>
'c.id AS cid, c.cat_name, f.id AS fid, f.forum_name, f.moderators',
'FROM' => 'categories AS c',
'JOINS' => array(
array(
'INNER JOIN' => 'forums AS f',
'ON' => 'c.id=f.cat_id'
)
),
'WHERE' => 'f.redirect_url IS NULL',
'ORDER BY' => 'c.disp_position, c.id, f.disp_position'
);
($hook = get_hook('pf_change_details_admin_qr_get_cats_and_forums')) ? eval($hook) : null;
$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);
$cur_category = 0;
while ($cur_forum = $forum_db->fetch_assoc($result))
{
if ($cur_forum['cid'] != $cur_category) // A new category since last iteration?
{
if ($cur_category)
echo "\n\t\t\t\t\t".''."\n";
echo "\t\t\t\t\t".'
'."\n\t\t\t\t\t\t".''.$cur_forum['cat_name'].': '."\n";
$cur_category = $cur_forum['cid'];
}
$moderators = ($cur_forum['moderators'] != '') ? unserialize($cur_forum['moderators']) : array();
echo "\t\t\t\t\t\t".' '.forum_htmlencode($cur_forum['forum_name']).'
'."\n";
}
?>
', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST -
require FORUM_ROOT.'footer.php';
}
($hook = get_hook('pf_change_details_new_section')) ? eval($hook) : null;
message($lang_common['Bad request']);
}