home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phpnuke / PHP-Nuke-7.5.exe / html / includes / usercp_register.php < prev    next >
PHP Script  |  2004-03-26  |  55KB  |  1,044 lines

  1. <?php
  2. /***************************************************************************
  3.  *                            usercp_register.php
  4.  *                            -------------------
  5.  *   begin                : Saturday, Feb 13, 2001
  6.  *   copyright            : (C) 2001 The phpBB Group
  7.  *   email                : support@phpbb.com
  8.  *
  9.  *   $Id: usercp_register.php,v 1.20.2.56 2004/03/13 15:08:22 acydburn Exp $
  10.  *
  11.  *
  12.  ***************************************************************************/
  13. /***************************************************************************
  14. * phpbb2 forums port version 2.0.5 (c) 2003 - Nuke Cops (http://nukecops.com)
  15. *
  16. * Ported by Nuke Cops to phpbb2 standalone 2.0.5 Test
  17. * and debugging completed by the Elite Nukers and site members.
  18. *
  19. * You run this package at your sole risk. Nuke Cops and affiliates cannot
  20. * be held liable if anything goes wrong. You are advised to test this
  21. * package on a development system. Backup everything before implementing
  22. * in a production environment. If something goes wrong, you can always
  23. * backout and restore your backups.
  24. *
  25. * Installing and running this also means you agree to the terms of the AUP
  26. * found at Nuke Cops.
  27. *
  28. * This is version 2.0.5 of the phpbb2 forum port for PHP-Nuke. Work is based
  29. * on Tom Nitzschner's forum port version 2.0.6. Tom's 2.0.6 port was based
  30. * on the phpbb2 standalone version 2.0.3. Our version 2.0.5 from Nuke Cops is
  31. * now reflecting phpbb2 standalone 2.0.5 that fixes some bugs and the
  32. * invalid_session error message.
  33. ***************************************************************************/
  34. /***************************************************************************
  35.  *   This file is part of the phpBB2 port to Nuke 6.0 (c) copyright 2002
  36.  *   by Tom Nitzschner (tom@toms-home.com)
  37.  *   http://bbtonuke.sourceforge.net (or http://www.toms-home.com)
  38.  *
  39.  *   As always, make a backup before messing with anything. All code
  40.  *   release by me is considered sample code only. It may be fully
  41.  *   functual, but you use it at your own risk, if you break it,
  42.  *   you get to fix it too. No waranty is given or implied.
  43.  *
  44.  *   Please post all questions/request about this port on http://bbtonuke.sourceforge.net first,
  45.  *   then on my site. All original header code and copyright messages will be maintained
  46.  *   to give credit where credit is due. If you modify this, the only requirement is
  47.  *   that you also maintain all original copyright messages. All my work is released
  48.  *   under the GNU GENERAL PUBLIC LICENSE. Please see the README for more information.
  49.  *
  50.  ***************************************************************************/
  51.  
  52. /***************************************************************************
  53.  *
  54.  *   This program is free software; you can redistribute it and/or modify
  55.  *   it under the terms of the GNU General Public License as published by
  56.  *   the Free Software Foundation; either version 2 of the License, or
  57.  *   (at your option) any later version.
  58.  *
  59.  *
  60.  ***************************************************************************/
  61.  
  62. if ( !defined('IN_PHPBB') )
  63. {
  64.         die("Hacking attempt");
  65.         exit;
  66. }
  67.  
  68. $unhtml_specialchars_match = array('#>#', '#<#', '#"#', '#&#');
  69. $unhtml_specialchars_replace = array('>', '<', '"', '&');
  70.  
  71. // ---------------------------------------
  72. // Load agreement template since user has not yet
  73. // agreed to registration conditions/coppa
  74. //
  75. function show_coppa()
  76. {
  77.         global $userdata, $template, $lang, $phpbb_root_path, $phpEx;
  78.  
  79.         $template->set_filenames(array(
  80.                 'body' => 'agreement.tpl')
  81.         );
  82.  
  83.         $template->assign_vars(array(
  84.                 'REGISTRATION' => $lang['Registration'],
  85.                 'AGREEMENT' => $lang['Reg_agreement'],
  86.                 "AGREE_OVER_13" => $lang['Agree_over_13'],
  87.                 "AGREE_UNDER_13" => $lang['Agree_under_13'],
  88.                 'DO_NOT_AGREE' => $lang['Agree_not'],
  89.  
  90.                 "U_AGREE_OVER13" => append_sid("profile.$phpEx?mode=register&agreed=true"),
  91.                 "U_AGREE_UNDER13" => append_sid("profile.$phpEx?mode=register&agreed=true&coppa=true"))
  92.         );
  93.  
  94.         $template->pparse('body');
  95.  
  96. }
  97. //
  98. // ---------------------------------------
  99.  
  100. $error = FALSE;
  101. $page_title = ( $mode == 'editprofile' ) ? $lang['Edit_profile'] : $lang['Register'];
  102.  
  103. if ( $mode == 'register' && !isset($HTTP_POST_VARS['agreed']) && !isset($HTTP_GET_VARS['agreed']) )
  104. {
  105.         include("includes/page_header.php");
  106.  
  107.         show_coppa();
  108.  
  109.         include("includes/page_tail.php");
  110. }
  111.  
  112. $coppa = ( empty($HTTP_POST_VARS['coppa']) && empty($HTTP_GET_VARS['coppa']) ) ? 0 : TRUE;
  113.  
  114. //
  115. // Check and initialize some variables if needed
  116. //
  117. if (
  118.         isset($HTTP_POST_VARS['submit']) ||
  119.         isset($HTTP_POST_VARS['avatargallery']) ||
  120.         isset($HTTP_POST_VARS['submitavatar']) ||
  121.         isset($HTTP_POST_VARS['cancelavatar']) ||
  122.         $mode == 'register' )
  123. {
  124.         include('includes/functions_validate.'.$phpEx);
  125.         include('includes/bbcode.'.$phpEx);
  126.         include('includes/functions_post.'.$phpEx);
  127.  
  128.         if ( $mode == 'editprofile' )
  129.         {
  130.                 $user_id = intval($HTTP_POST_VARS['user_id']);
  131.                 $current_email = trim(htmlspecialchars($HTTP_POST_VARS['current_email']));
  132.         }
  133.  
  134.         $strip_var_list = array('username' => 'username', 'email' => 'email', 'icq' => 'icq', 'aim' => 'aim', 'msn' => 'msn', 'yim' => 'yim', 'website' => 'website', 'location' => 'location', 'occupation' => 'occupation', 'interests' => 'interests');
  135.  
  136.         // Strip all tags from data ... may p**s some people off, bah, strip_tags is
  137.         // doing the job but can still break HTML output ... have no choice, have
  138.         // to use htmlspecialchars ... be prepared to be moaned at.
  139.         while( list($var, $param) = @each($strip_var_list) )
  140.         {
  141.                 if ( !empty($HTTP_POST_VARS[$param]) )
  142.                 {
  143.                         $$var = trim(htmlspecialchars($HTTP_POST_VARS[$param]));
  144.                 }
  145.         }
  146.  
  147.         $trim_var_list = array('cur_password' => 'cur_password', 'new_password' => 'new_password', 'password_confirm' => 'password_confirm', 'signature' => 'signature');
  148.  
  149.         while( list($var, $param) = @each($trim_var_list) )
  150.         {
  151.                 if ( !empty($HTTP_POST_VARS[$param]) )
  152.                 {
  153.                         $$var = trim($HTTP_POST_VARS[$param]);
  154.                 }
  155.         }
  156.  
  157.         $signature = str_replace('<br />', "\n", $signature);
  158.  
  159.         // Run some validation on the optional fields. These are pass-by-ref, so they'll be changed to
  160.         // empty strings if they fail.
  161.         validate_optional_fields($icq, $aim, $msn, $yim, $website, $location, $occupation, $interests, $signature);
  162.  
  163.         $viewemail = ( isset($HTTP_POST_VARS['viewemail']) ) ? ( ($HTTP_POST_VARS['viewemail']) ? TRUE : 0 ) : 0;
  164.         $allowviewonline = ( isset($HTTP_POST_VARS['hideonline']) ) ? ( ($HTTP_POST_VARS['hideonline']) ? 0 : TRUE ) : TRUE;
  165.         $notifyreply = ( isset($HTTP_POST_VARS['notifyreply']) ) ? ( ($HTTP_POST_VARS['notifyreply']) ? TRUE : 0 ) : 0;
  166.         $notifypm = ( isset($HTTP_POST_VARS['notifypm']) ) ? ( ($HTTP_POST_VARS['notifypm']) ? TRUE : 0 ) : TRUE;
  167.         $popup_pm = ( isset($HTTP_POST_VARS['popup_pm']) ) ? ( ($HTTP_POST_VARS['popup_pm']) ? TRUE : 0 ) : TRUE;
  168.  
  169.         if ( $mode == 'register' )
  170.         {
  171.                 $attachsig = ( isset($HTTP_POST_VARS['attachsig']) ) ? ( ($HTTP_POST_VARS['attachsig']) ? TRUE : 0 ) : $board_config['allow_sig'];
  172.  
  173.                 $allowhtml = ( isset($HTTP_POST_VARS['allowhtml']) ) ? ( ($HTTP_POST_VARS['allowhtml']) ? TRUE : 0 ) : $board_config['allow_html'];
  174.                 $allowbbcode = ( isset($HTTP_POST_VARS['allowbbcode']) ) ? ( ($HTTP_POST_VARS['allowbbcode']) ? TRUE : 0 ) : $board_config['allow_bbcode'];
  175.                 $allowsmilies = ( isset($HTTP_POST_VARS['allowsmilies']) ) ? ( ($HTTP_POST_VARS['allowsmilies']) ? TRUE : 0 ) : $board_config['allow_smilies'];
  176.         }
  177.         else
  178.         {
  179.                 $attachsig = ( isset($HTTP_POST_VARS['attachsig']) ) ? ( ($HTTP_POST_VARS['attachsig']) ? TRUE : 0 ) : 0;
  180.  
  181.                 $allowhtml = ( isset($HTTP_POST_VARS['allowhtml']) ) ? ( ($HTTP_POST_VARS['allowhtml']) ? TRUE : 0 ) : $userdata['user_allowhtml'];
  182.                 $allowbbcode = ( isset($HTTP_POST_VARS['allowbbcode']) ) ? ( ($HTTP_POST_VARS['allowbbcode']) ? TRUE : 0 ) : $userdata['user_allowbbcode'];
  183.                 $allowsmilies = ( isset($HTTP_POST_VARS['allowsmilies']) ) ? ( ($HTTP_POST_VARS['allowsmilies']) ? TRUE : 0 ) : $userdata['user_allowsmile'];
  184.         }
  185.  
  186.         $user_style = ( isset($HTTP_POST_VARS['style']) ) ? intval($HTTP_POST_VARS['style']) : $board_config['default_style'];
  187.  
  188.         if ( !empty($HTTP_POST_VARS['language']) )
  189.         {
  190.                 if ( preg_match('/^[a-z_]+$/i', $HTTP_POST_VARS['language']) )
  191.                 {
  192.                         $user_lang = htmlspecialchars($HTTP_POST_VARS['language']);
  193.                 }
  194.                 else
  195.                 {
  196.                         $error = true;
  197.                         $error_msg = $lang['Fields_empty'];
  198.                 }
  199.         }
  200.         else
  201.         {
  202.                 $user_lang = $board_config['default_lang'];
  203.         }
  204.  
  205.         $user_timezone = ( isset($HTTP_POST_VARS['timezone']) ) ? doubleval($HTTP_POST_VARS['timezone']) : $board_config['board_timezone'];
  206.     $sql = "SELECT config_value
  207.         FROM " . CONFIG_TABLE . "
  208.         WHERE config_name = 'default_dateformat'";
  209.     if ( !($result = $db->sql_query($sql)) )
  210.     {
  211.         message_die(GENERAL_ERROR, 'Could not select default dateformat', '', __LINE__, __FILE__, $sql);
  212.     }
  213.     $row = $db->sql_fetchrow($result);
  214.     $board_config['default_dateformat'] = $row['config_value'];
  215.         $user_dateformat = ( !empty($HTTP_POST_VARS['dateformat']) ) ? trim(htmlspecialchars($HTTP_POST_VARS['dateformat'])) : $board_config['default_dateformat'];
  216.  
  217.         $user_avatar_local = ( isset($HTTP_POST_VARS['avatarselect']) && !empty($HTTP_POST_VARS['submitavatar']) && $board_config['allow_avatar_local'] ) ? htmlspecialchars($HTTP_POST_VARS['avatarselect']) : ( ( isset($HTTP_POST_VARS['avatarlocal'])  ) ? htmlspecialchars($HTTP_POST_VARS['avatarlocal']) : '' );
  218.  
  219.         $user_avatar_remoteurl = ( !empty($HTTP_POST_VARS['avatarremoteurl']) ) ? trim(htmlspecialchars($HTTP_POST_VARS['avatarremoteurl'])) : '';
  220.         $user_avatar_upload = ( !empty($HTTP_POST_VARS['avatarurl']) ) ? trim($HTTP_POST_VARS['avatarurl']) : ( ( $HTTP_POST_FILES['avatar']['tmp_name'] != "none") ? $HTTP_POST_FILES['avatar']['tmp_name'] : '' );
  221.         $user_avatar_name = ( !empty($HTTP_POST_FILES['avatar']['name']) ) ? $HTTP_POST_FILES['avatar']['name'] : '';
  222.         $user_avatar_size = ( !empty($HTTP_POST_FILES['avatar']['size']) ) ? $HTTP_POST_FILES['avatar']['size'] : 0;
  223.         $user_avatar_filetype = ( !empty($HTTP_POST_FILES['avatar']['type']) ) ? $HTTP_POST_FILES['avatar']['type'] : '';
  224.  
  225.         $user_avatar = ( empty($user_avatar_loc) && $mode == 'editprofile' ) ? $userdata['user_avatar'] : '';
  226.         $user_avatar_type = ( empty($user_avatar_loc) && $mode == 'editprofile' ) ? $userdata['user_avatar_type'] : '';
  227.  
  228.         if ( (isset($HTTP_POST_VARS['avatargallery']) || isset($HTTP_POST_VARS['submitavatar']) || isset($HTTP_POST_VARS['cancelavatar'])) && (!isset($HTTP_POST_VARS['submit'])) )
  229.         {
  230.                 $username = stripslashes($username);
  231.                 $email = stripslashes($email);
  232.                 $cur_password = htmlspecialchars(stripslashes($cur_password));
  233.                 $new_password = htmlspecialchars(stripslashes($new_password));
  234.                 $password_confirm = htmlspecialchars(stripslashes($password_confirm));
  235.  
  236.                 $icq = stripslashes($icq);
  237.                 $aim = stripslashes($aim);
  238.                 $msn = stripslashes($msn);
  239.                 $yim = stripslashes($yim);
  240.  
  241.                 $website = stripslashes($website);
  242.                 $location = stripslashes($location);
  243.                 $occupation = stripslashes($occupation);
  244.                 $interests = stripslashes($interests);
  245.                 $signature = stripslashes($signature);
  246.  
  247.                 $user_lang = stripslashes($user_lang);
  248.                 $user_dateformat = stripslashes($user_dateformat);
  249.  
  250.                 if ( !isset($HTTP_POST_VARS['cancelavatar']))
  251.                 {
  252.                         $user_avatar = $user_avatar_local;
  253.                         $user_avatar_type = USER_AVATAR_GALLERY;
  254.                 }
  255.         }
  256. }
  257.  
  258. //
  259. // Let's make sure the user isn't logged in while registering,
  260. // and ensure that they were trying to register a second time
  261. // (Prevents double registrations)
  262. //
  263. if ($mode == 'register' && ($userdata['session_logged_in'] || $username == $userdata['username']))
  264. {
  265.         message_die(GENERAL_MESSAGE, $lang['Username_taken'], '', __LINE__, __FILE__);
  266. }
  267.  
  268. //
  269. // Did the user submit? In this case build a query to update the users profile in the DB
  270. //
  271. if ( isset($HTTP_POST_VARS['submit']) )
  272. {
  273.         include("includes/usercp_avatar.php");
  274.  
  275.         $passwd_sql = '';
  276.         if ( $mode == 'editprofile' )
  277.         {
  278.                 if ( $user_id != $userdata['user_id'] )
  279.                 {
  280.                         $error = TRUE;
  281.                         $error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $lang['Wrong_Profile'];
  282.                 }
  283.         }
  284.         else if ( $mode == 'register' )
  285.         {
  286.                 if ( empty($username) || empty($new_password) || empty($password_confirm) || empty($email) )
  287.                 {
  288.                         $error = TRUE;
  289.                         $error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $lang['Fields_empty'];
  290.                 }
  291.         }
  292.  
  293.         $passwd_sql = '';
  294.         if ( !empty($new_password) && !empty($password_confirm) )
  295.         {
  296.                 if ( $new_password != $password_confirm )
  297.                 {
  298.                         $error = TRUE;
  299.                         $error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $lang['Password_mismatch'];
  300.                 }
  301.                 else if ( strlen($new_password) > 32 )
  302.                 {
  303.                         $error = TRUE;
  304.                         $error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $lang['Password_long'];
  305.                 }
  306.                 else
  307.                 {
  308.                         if ( $mode == 'editprofile' )
  309.                         {
  310.                                 $sql = "SELECT user_password
  311.                                         FROM " . USERS_TABLE . "
  312.                                         WHERE user_id = '$user_id'";
  313.                                 if ( !($result = $db->sql_query($sql)) )
  314.                                 {
  315.                                         message_die(GENERAL_ERROR, 'Could not obtain user_password information', '', __LINE__, __FILE__, $sql);
  316.                                 }
  317.  
  318.                                 $row = $db->sql_fetchrow($result);
  319.  
  320.                                 if ( $row['user_password'] != md5($cur_password) )
  321.                                 {
  322.                                         $error = TRUE;
  323.                                         $error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $lang['Current_password_mismatch'];
  324.                                 }
  325.                         }
  326.  
  327.                         if ( !$error )
  328.                         {
  329.                                 $new_password = md5($new_password);
  330.                                 $passwd_sql = "user_password = '$new_password', ";
  331.                         }
  332.                 }
  333.         }
  334.         else if ( ( empty($new_password) && !empty($password_confirm) ) || ( !empty($new_password) && empty($password_confirm) ) )
  335.         {
  336.                 $error = TRUE;
  337.                 $error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $lang['Password_mismatch'];
  338.         }
  339.  
  340.         //
  341.         // Do a ban check on this email address
  342.         //
  343.         if ( $email != $userdata['user_email'] || $mode == 'register' )
  344.         {
  345.                 $result = validate_email($email);
  346.                 if ( $result['error'] )
  347.                 {
  348.                         $email = $userdata['user_email'];
  349.  
  350.                         $error = TRUE;
  351.                         $error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $result['error_msg'];
  352.                 }
  353.  
  354.                 if ( $mode == 'editprofile' )
  355.                 {
  356.                         $sql = "SELECT user_password
  357.                                 FROM " . USERS_TABLE . "
  358.                                 WHERE user_id = '$user_id'";
  359.                         if ( !($result = $db->sql_query($sql)) )
  360.                         {
  361.                                 message_die(GENERAL_ERROR, 'Could not obtain user_password information', '', __LINE__, __FILE__, $sql);
  362.                         }
  363.  
  364.                         $row = $db->sql_fetchrow($result);
  365.  
  366.                         if ( $row['user_password'] != md5($cur_password) )
  367.                         {
  368.                                 $email = $userdata['user_email'];
  369.  
  370.                                 $error = TRUE;
  371.                                 $error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $lang['Current_password_mismatch'];
  372.                         }
  373.                 }
  374.         }
  375.  
  376.         $username_sql = '';
  377.         if ( $board_config['allow_namechange'] || $mode == 'register' )
  378.         {
  379.                 if ( empty($username) )
  380.                 {
  381.                         // Error is already triggered, since one field is empty.
  382.                         $error = TRUE;
  383.                 }
  384.                 else if ( $username != $userdata['username'] || $mode == 'register' )
  385.                 {
  386.                         if (strtolower($username) != strtolower($userdata['username']))
  387.                         {
  388.                                 $result = validate_username($username);
  389.                                 if ( $result['error'] )
  390.                                 {
  391.                                         $error = TRUE;
  392.                                         $error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $result['error_msg'];
  393.                                 }
  394.                         }
  395.  
  396.                         if (!$error)
  397.                         {
  398.                                 $username_sql = "username = '" . str_replace("\'", "''", $username) . "', ";
  399.                         }
  400.                 }
  401.         }
  402.  
  403.         if ( $signature != '' )
  404.         {
  405.                 if ( strlen($signature) > $board_config['max_sig_chars'] )
  406.                 {
  407.                         $error = TRUE;
  408.                         $error_msg .= ( ( isset($error_msg) ) ? '<br />' : '' ) . $lang['Signature_too_long'];
  409.                 }
  410.  
  411.                 if ( $signature_bbcode_uid == '' )
  412.                 {
  413.                         $signature_bbcode_uid = ( $allowbbcode ) ? make_bbcode_uid() : '';
  414.                 }
  415.                 $signature = prepare_message($signature, $allowhtml, $allowbbcode, $allowsmilies, $signature_bbcode_uid);
  416.         }
  417.  
  418.         if ( $website != '' )
  419.         {
  420.                 rawurlencode($website);
  421.         }
  422.  
  423.         $avatar_sql = '';
  424.  
  425.         if ( isset($HTTP_POST_VARS['avatardel']) && $mode == 'editprofile' )
  426.         {
  427.                 $avatar_sql = user_avatar_delete($userdata['user_avatar_type'], $userdata['user_avatar']);
  428.         }
  429.  
  430.         if ( ( !empty($user_avatar_upload) || !empty($user_avatar_name) ) && $board_config['allow_avatar_upload'] )
  431.         {
  432.                 if ( !empty($user_avatar_upload) )
  433.                 {
  434.                         $avatar_mode = ( !empty($user_avatar_name) ) ? 'local' : 'remote';
  435.                         $avatar_sql = user_avatar_upload($mode, $avatar_mode, $userdata['user_avatar'], $userdata['user_avatar_type'], $error, $error_msg, $user_avatar_upload, $user_avatar_name, $user_avatar_size, $user_avatar_filetype);
  436.                 }
  437.                 else if ( !empty($user_avatar_name) )
  438.                 {
  439.                         $l_avatar_size = sprintf($lang['Avatar_filesize'], round($board_config['avatar_filesize'] / 1024));
  440.  
  441.                         $error = true;
  442.                         $error_msg .= ( ( !empty($error_msg) ) ? '<br />' : '' ) . $l_avatar_size;
  443.                 }
  444.         }
  445.         else if ( $user_avatar_remoteurl != '' && $board_config['allow_avatar_remote'] )
  446.         {
  447.                 if ( @file_exists(@phpbb_realpath('./' . $board_config['avatar_path'] . '/' . $userdata['user_avatar'])) && $userdata['user_avatar_type'] == USER_AVATAR_UPLOAD )
  448.                 {
  449.                         @unlink(@phpbb_realpath('./' . $board_config['avatar_path'] . '/' . $userdata['user_avatar']));
  450.                 }
  451.                 $avatar_sql = user_avatar_url($mode, $error, $error_msg, $user_avatar_remoteurl);
  452.         }
  453.         else if ( $user_avatar_local != '' && $board_config['allow_avatar_local'] )
  454.         {
  455.                 if ( @file_exists(@phpbb_realpath('./' . $board_config['avatar_path'] . '/' . $userdata['user_avatar'])) && $userdata['user_avatar_type'] == USER_AVATAR_UPLOAD )
  456.                 {
  457.                         @unlink(@phpbb_realpath('./' . $board_config['avatar_path'] . '/' . $userdata['user_avatar']));
  458.                 }
  459.                 $avatar_sql = user_avatar_gallery($mode, $error, $error_msg, $user_avatar_local);
  460.         }
  461.  
  462.         if ( !$error )
  463.         {
  464.                 if ( $avatar_sql == '' )
  465.                 {
  466.                         $avatar_sql = ( $mode == 'editprofile' ) ? '' : "'', " . USER_AVATAR_NONE;
  467.                 }
  468.  
  469.                 if ( $mode == 'editprofile' )
  470.                 {
  471.                         if ( $email != $userdata['user_email'] && $board_config['require_activation'] != USER_ACTIVATION_NONE && $userdata['user_level'] != ADMIN )
  472.                         {
  473.                                 $user_active = 0;
  474.  
  475.                                 $user_actkey = gen_rand_string(true);
  476.                                 $key_len = 54 - ( strlen($server_url) );
  477.                                 $key_len = ( $key_len > 6 ) ? $key_len : 6;
  478.                                 $user_actkey = substr($user_actkey, 0, $key_len);
  479.  
  480.                                 if ( $userdata['session_logged_in'] )
  481.                                 {
  482.                                         session_end($userdata['sid'], $userdata['user_id']);
  483.                                 }
  484.                         }
  485.                         else
  486.                         {
  487.                                 $user_active = 1;
  488.                                 $user_actkey = '';
  489.                         }
  490.  
  491.                         $sql = "UPDATE " . USERS_TABLE . "
  492.                                 SET " . $username_sql . $passwd_sql . "user_email = '" . str_replace("\'", "''", $email) ."', user_icq = '" . str_replace("\'", "''", $icq) . "', user_website = '" . str_replace("\'", "''", $website) . "', user_occ = '" . str_replace("\'", "''", $occupation) . "', user_from = '" . str_replace("\'", "''", $location) . "', user_interests = '" . str_replace("\'", "''", $interests) . "', user_sig = '" . str_replace("\'", "''", $signature) . "', user_sig_bbcode_uid = '$signature_bbcode_uid', user_viewemail = '$viewemail', user_aim = '" . str_replace("\'", "''", str_replace(' ', '+', $aim)) . "', user_yim = '" . str_replace("\'", "''", $yim) . "', user_msnm = '" . str_replace("\'", "''", $msn) . "', user_attachsig = '$attachsig', user_allowsmile = '$allowsmilies', user_allowhtml = '$allowhtml', user_allowbbcode = '$allowbbcode', user_allow_viewonline = '$allowviewonline', user_notify = '$notifyreply', user_notify_pm = '$notifypm', user_popup_pm = '$popup_pm', user_timezone = '$user_timezone', user_dateformat = '" . str_replace("\'", "''", $user_dateformat) . "', user_lang = '" . str_replace("\'", "''", $user_lang) . "', user_style = '$user_style', user_active = '$user_active', user_actkey = '" . str_replace("\'", "''", $user_actkey) . "'" . $avatar_sql . "
  493.                                 WHERE user_id = '$user_id'";
  494.                         if ( !($result = $db->sql_query($sql)) )
  495.                         {
  496.                                 message_die(GENERAL_ERROR, 'Could not update users table', '', __LINE__, __FILE__, $sql);
  497.                         } else {
  498.  
  499.                             getusrinfo($user);
  500.                                     docookie($userinfo[user_id],$userinfo[username],$userinfo[user_password],$userinfo[storynum],$userinfo[umode],$userinfo[uorder],$userinfo[thold],$userinfo[noscore],$userinfo[ublockon],$userinfo[theme],$userinfo[commentmax]);
  501.                         }
  502.  
  503.                         if ( !$user_active )
  504.                         {
  505.                                 //
  506.                                 // The users account has been deactivated, send them an email with a new activation key
  507.                                 //
  508.                                 include("includes/emailer.php");
  509.                                 $emailer = new emailer($board_config['smtp_delivery']);
  510.  
  511.                                 $emailer->from($board_config['board_email']);
  512.                                 $emailer->replyto($board_config['board_email']);
  513.  
  514.                                 $emailer->use_template('user_activate', stripslashes($user_lang));
  515.                                 $emailer->email_address($email);
  516.                                 $emailer->set_subject($lang['Reactivate']);
  517.  
  518.                                 $emailer->assign_vars(array(
  519.                                         'SITENAME' => $board_config['sitename'],
  520.                                         'USERNAME' => preg_replace($unhtml_specialchars_match, $unhtml_specialchars_replace, substr(str_replace("\'", "'", $username), 0, 25)),
  521.                                         'EMAIL_SIG' => (!empty($board_config['board_email_sig'])) ? str_replace('<br />', "\n", "-- \n" . $board_config['board_email_sig']) : '',
  522.  
  523.                                         'U_ACTIVATE' => $server_url . '&mode=activate&' . POST_USERS_URL . '=' . $user_id . '&act_key=' . $user_actkey)
  524.                                 );
  525.                                 $emailer->send();
  526.                                 $emailer->reset();
  527.  
  528.                                 if (is_active("Forums")) {
  529.                                         $message = $lang['Profile_updated_inactive'] . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
  530.                                 } else {
  531.                                         $message = $lang['Profile_updated_inactive'] . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="index.php">', '</a>');
  532.                                 }
  533.                         }
  534.                         else
  535.                         {
  536.                                 if (is_active("Forums")) {
  537.                                         $message = $lang['Profile_updated'] . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
  538.                                 } else {
  539.                                             $message = $lang['Profile_updated'] . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="index.php">', '</a>');
  540.                                 }
  541.                         }
  542.  
  543. //                            $template->assign_vars(array(
  544. //                        "META" => '<meta http-equiv="refresh" content="5;url=' . append_sid("index.$phpEx") . '">')
  545. //                        );
  546.  
  547.                         message_die(GENERAL_MESSAGE, $message);
  548.                 }
  549.                 else
  550.                 {
  551.                         $sql = "SELECT MAX(user_id) AS total
  552.                                 FROM " . USERS_TABLE;
  553.                         if ( !($result = $db->sql_query($sql)) )
  554.                         {
  555.                                 message_die(GENERAL_ERROR, 'Could not obtain next user_id information', '', __LINE__, __FILE__, $sql);
  556.                         }
  557.  
  558.                         if ( !($row = $db->sql_fetchrow($result)) )
  559.                         {
  560.                                 message_die(GENERAL_ERROR, 'Could not obtain next user_id information', '', __LINE__, __FILE__, $sql);
  561.                         }
  562.                         $user_id = $row['total'] + 1;
  563.  
  564.                         //
  565.                         // Get current date
  566.                         //
  567.                         $reg_date = date("M d, Y");
  568.                         $sql = "INSERT INTO " . USERS_TABLE . "        (user_id, username, user_regdate, user_password, user_email, user_icq, user_website, user_occ, user_from, user_interests, user_sig, user_sig_bbcode_uid, user_avatar, user_avatar_type, user_viewemail, user_aim, user_yim, user_msnm, user_attachsig, user_allowsmile, user_allowhtml, user_allowbbcode, user_allow_viewonline, user_notify, user_notify_pm, user_popup_pm, user_timezone, user_dateformat, user_lang, user_style, user_level, user_allow_pm, user_active, user_actkey)
  569.                                 VALUES ('$user_id', '" . str_replace("\'", "''", $username) . "', '" . $reg_date . "', '" . str_replace("\'", "''", $new_password) . "', '" . str_replace("\'", "''", $email) . "', '" . str_replace("\'", "''", $icq) . "', '" . str_replace("\'", "''", $website) . "', '" . str_replace("\'", "''", $occupation) . "', '" . str_replace("\'", "''", $location) . "', '" . str_replace("\'", "''", $interests) . "', '" . str_replace("\'", "''", $signature) . "', '$signature_bbcode_uid', $avatar_sql, $viewemail, '" . str_replace("\'", "''", str_replace(' ', '+', $aim)) . "', '" . str_replace("\'", "''", $yim) . "', '" . str_replace("\'", "''", $msn) . "', '$attachsig', '$allowsmilies', '$allowhtml', '$allowbbcode', '$allowviewonline', '$notifyreply', '$notifypm', '$popup_pm', '$user_timezone', '" . str_replace("\'", "''", $user_dateformat) . "', '" . str_replace("\'", "''", $user_lang) . "', '$user_style', '1', '1', ";
  570.                         if ( $board_config['require_activation'] == USER_ACTIVATION_SELF || $board_config['require_activation'] == USER_ACTIVATION_ADMIN || $coppa )
  571.                         {
  572.                                 $user_actkey = gen_rand_string(true);
  573.                                 $key_len = 54 - (strlen($server_url));
  574.                                 $key_len = ( $key_len > 6 ) ? $key_len : 6;
  575.                                 $user_actkey = substr($user_actkey, 0, $key_len);
  576.                                 $sql .= "0, '" . str_replace("\'", "''", $user_actkey) . "')";
  577.                         }
  578.                         else
  579.                         {
  580.                                 $sql .= "1, '')";
  581.                         }
  582.  
  583.                         if ( !($result = $db->sql_query($sql, BEGIN_TRANSACTION)) )
  584.                         {
  585.                                 message_die(GENERAL_ERROR, 'Could not insert data into users table', '', __LINE__, __FILE__, $sql);
  586.                         }
  587.  
  588.                         $sql = "INSERT INTO " . GROUPS_TABLE . " (group_name, group_description, group_single_user, group_moderator)
  589.                                 VALUES ('', 'Personal User', '1', '0')";
  590.                         if ( !($result = $db->sql_query($sql)) )
  591.                         {
  592.                                 message_die(GENERAL_ERROR, 'Could not insert data into groups table', '', __LINE__, __FILE__, $sql);
  593.                         }
  594.  
  595.                         $group_id = $db->sql_nextid();
  596.  
  597.                         $sql = "INSERT INTO " . USER_GROUP_TABLE . " (user_id, group_id, user_pending)
  598.                                 VALUES ('$user_id', '$group_id', '0')";
  599.                         if( !($result = $db->sql_query($sql, END_TRANSACTION)) )
  600.                         {
  601.                                 message_die(GENERAL_ERROR, 'Could not insert data into user_group table', '', __LINE__, __FILE__, $sql);
  602.                         }
  603.  
  604.                         if ( $coppa )
  605.                         {
  606.                                 $message = $lang['COPPA'];
  607.                                 $email_template = 'coppa_welcome_inactive';
  608.                         }
  609.                         else if ( $board_config['require_activation'] == USER_ACTIVATION_SELF )
  610.                         {
  611.                                 $message = $lang['Account_inactive'];
  612.                                 $email_template = 'user_welcome_inactive';
  613.                         }
  614.                         else if ( $board_config['require_activation'] == USER_ACTIVATION_ADMIN )
  615.                         {
  616.                                 $message = $lang['Account_inactive_admin'];
  617.                                 $email_template = 'admin_welcome_inactive';
  618.                         }
  619.                         else
  620.                         {
  621.                                 $message = $lang['Account_added'];
  622.                                 $email_template = 'user_welcome';
  623.                         }
  624.  
  625.                         include("includes/emailer.php");
  626.                         $emailer = new emailer($board_config['smtp_delivery']);
  627.  
  628.                         $emailer->from($board_config['board_email']);
  629.                         $emailer->replyto($board_config['board_email']);
  630.  
  631.                         $emailer->use_template($email_template, stripslashes($user_lang));
  632.                         $emailer->email_address($email);
  633.                         $emailer->set_subject(sprintf($lang['Welcome_subject'], $board_config['sitename']));
  634.  
  635.                         if( $coppa )
  636.                         {
  637.                                 $emailer->assign_vars(array(
  638.                                         'SITENAME' => $board_config['sitename'],
  639.                                         'WELCOME_MSG' => sprintf($lang['Welcome_subject'], $board_config['sitename']),
  640.                                         'USERNAME' => preg_replace($unhtml_specialchars_match, $unhtml_specialchars_replace, substr(str_replace("\'", "'", $username), 0, 25)),
  641.                                         'PASSWORD' => $password_confirm,
  642.                                         'EMAIL_SIG' => str_replace('<br />', "\n", "-- \n" . $board_config['board_email_sig']),
  643.  
  644.                                         'FAX_INFO' => $board_config['coppa_fax'],
  645.                                         'MAIL_INFO' => $board_config['coppa_mail'],
  646.                                         'EMAIL_ADDRESS' => $email,
  647.                                         'ICQ' => $icq,
  648.                                         'AIM' => $aim,
  649.                                         'YIM' => $yim,
  650.                                         'MSN' => $msn,
  651.                                         'WEB_SITE' => $website,
  652.                                         'FROM' => $location,
  653.                                         'OCC' => $occupation,
  654.                                         'INTERESTS' => $interests,
  655.                                         'SITENAME' => $board_config['sitename']));
  656.                         }
  657.                         else
  658.                         {
  659.                                 $emailer->assign_vars(array(
  660.                                         'SITENAME' => $board_config['sitename'],
  661.                                         'WELCOME_MSG' => sprintf($lang['Welcome_subject'], $board_config['sitename']),
  662.                                         'USERNAME' => preg_replace($unhtml_specialchars_match, $unhtml_specialchars_replace, substr(str_replace("\'", "'", $username), 0, 25)),
  663.                                         'PASSWORD' => $password_confirm,
  664.                                         'EMAIL_SIG' => str_replace('<br />', "\n", "-- \n" . $board_config['board_email_sig']),
  665.  
  666.                                         'U_ACTIVATE' => $server_url . '&mode=activate&' . POST_USERS_URL . '=' . $user_id . '&act_key=' . $user_actkey)
  667.                                 );
  668.                         }
  669.  
  670.                         $emailer->send();
  671.                         $emailer->reset();
  672.  
  673.                         if ( $board_config['require_activation'] == USER_ACTIVATION_ADMIN )
  674.                         {
  675.                                 $sql = "SELECT user_email, user_lang
  676.                                         FROM " . USERS_TABLE . "
  677.                                         WHERE user_level = " . ADMIN;
  678.  
  679.                                 if ( !($result = $db->sql_query($sql)) )
  680.                                 {
  681.                                         message_die(GENERAL_ERROR, 'Could not select Administrators', '', __LINE__, __FILE__, $sql);
  682.                                 }
  683.  
  684.                                 while ($row = $db->sql_fetchrow($result))
  685.                                 {
  686.                     $emailer->from($board_config['board_email']);
  687.                     $emailer->replyto($board_config['board_email']);
  688.                     
  689.                     $emailer->email_address(trim($row['user_email']));
  690.                     $emailer->use_template("admin_activate", $row['user_lang']);
  691.                                 $emailer->set_subject($lang['New_account_subject']);
  692.  
  693.                                 $emailer->assign_vars(array(
  694.                                         'USERNAME' => preg_replace($unhtml_specialchars_match, $unhtml_specialchars_replace, substr(str_replace("\'", "'", $username), 0, 25)),
  695.                                         'EMAIL_SIG' => str_replace('<br />', "\n", "-- \n" . $board_config['board_email_sig']),
  696.  
  697.                                         'U_ACTIVATE' => $server_url . '&mode=activate&' . POST_USERS_URL . '=' . $user_id . '&act_key=' . $user_actkey)
  698.                                 );
  699.                                 $emailer->send();
  700.                                 $emailer->reset();
  701.                         }
  702.                 $db->sql_freeresult($result);
  703.             }
  704.                         $message = $message . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
  705.  
  706.                         message_die(GENERAL_MESSAGE, $message);
  707.                 } // if mode == register
  708.         }
  709. } // End of submit
  710.  
  711.  
  712. if ( $error )
  713. {
  714.         //
  715.         // If an error occured we need to stripslashes on returned data
  716.         //
  717.         $username = stripslashes($username);
  718.         $email = stripslashes($email);
  719.         $new_password = '';
  720.         $password_confirm = '';
  721.  
  722.         $icq = stripslashes($icq);
  723.         $aim = str_replace('+', ' ', stripslashes($aim));
  724.         $msn = stripslashes($msn);
  725.         $yim = stripslashes($yim);
  726.  
  727.         $website = stripslashes($website);
  728.         $location = stripslashes($location);
  729.         $occupation = stripslashes($occupation);
  730.         $interests = stripslashes($interests);
  731.         $signature = stripslashes($signature);
  732.         $signature = ($signature_bbcode_uid != '') ? preg_replace("/:(([a-z0-9]+:)?)$signature_bbcode_uid(=|\])/si", '\\3', $signature) : $signature;
  733.  
  734.         $user_lang = stripslashes($user_lang);
  735.         $user_dateformat = stripslashes($user_dateformat);
  736.  
  737. }
  738. else if ( $mode == 'editprofile' && !isset($HTTP_POST_VARS['avatargallery']) && !isset($HTTP_POST_VARS['submitavatar']) && !isset($HTTP_POST_VARS['cancelavatar']) )
  739. {
  740.         $user_id = $userdata['user_id'];
  741.         $username = $userdata['username'];
  742.         $email = $userdata['user_email'];
  743.         $new_password = '';
  744.         $password_confirm = '';
  745.  
  746.         $icq = $userdata['user_icq'];
  747.         $aim = str_replace('+', ' ', $userdata['user_aim']);
  748.         $msn = $userdata['user_msnm'];
  749.         $yim = $userdata['user_yim'];
  750.  
  751.         $website = $userdata['user_website'];
  752.         $userdata['user_from'] = str_replace(".gif", "", $userdata['user_from']);
  753.         $location = $userdata['user_from'];
  754.         $occupation = $userdata['user_occ'];
  755.         $interests = $userdata['user_interests'];
  756.         $signature_bbcode_uid = $userdata['user_sig_bbcode_uid'];
  757.         $signature = ($signature_bbcode_uid != '') ? preg_replace("/:(([a-z0-9]+:)?)$signature_bbcode_uid(=|\])/si", '\\3', $userdata['user_sig']) : $userdata['user_sig'];
  758.  
  759.         $viewemail = $userdata['user_viewemail'];
  760.         $notifypm = $userdata['user_notify_pm'];
  761.         $popup_pm = $userdata['user_popup_pm'];
  762.         $notifyreply = $userdata['user_notify'];
  763.         $attachsig = $userdata['user_attachsig'];
  764.         $allowhtml = $userdata['user_allowhtml'];
  765.         $allowbbcode = $userdata['user_allowbbcode'];
  766.         $allowsmilies = $userdata['user_allowsmile'];
  767.         $allowviewonline = $userdata['user_allow_viewonline'];
  768.  
  769.         $user_avatar = ( $userdata['user_allowavatar'] ) ? $userdata['user_avatar'] : '';
  770.         $user_avatar_type = ( $userdata['user_allowavatar'] ) ? $userdata['user_avatar_type'] : USER_AVATAR_NONE;
  771.  
  772.         $user_style = $userdata['user_style'];
  773.         $user_lang = $userdata['user_lang'];
  774.         $user_timezone = $userdata['user_timezone'];
  775.         $user_dateformat = $userdata['user_dateformat'];
  776. }
  777.  
  778. //
  779. // Default pages
  780. //
  781. include("includes/page_header.php");
  782.  
  783. make_jumpbox('viewforum.'.$phpEx);
  784.  
  785. if ( $mode == 'editprofile' )
  786. {
  787.         if ( $user_id != $userdata['user_id'] )
  788.         {
  789.                 $error = TRUE;
  790.                 $error_msg = $lang['Wrong_Profile'];
  791.         }
  792. }
  793.  
  794. if( isset($HTTP_POST_VARS['avatargallery']) && !$error )
  795. {
  796.         include("includes/usercp_avatar.php");
  797.  
  798.         $avatar_category = ( !empty($HTTP_POST_VARS['avatarcategory']) ) ? $HTTP_POST_VARS['avatarcategory'] : '';
  799.  
  800.         $template->set_filenames(array(
  801.                 'body' => 'profile_avatar_gallery.tpl')
  802.         );
  803.  
  804.         $allowviewonline = !$allowviewonline;
  805.  
  806.         display_avatar_gallery($mode, $avatar_category, $user_id, $email, $current_email, $coppa, $username, $email, &$new_password, &$cur_password, $password_confirm, $icq, $aim, $msn, $yim, $website, $location, $occupation, $interests, $signature, $viewemail, $notifypm, $popup_pm, $notifyreply, $attachsig, $allowhtml, $allowbbcode, $allowsmilies, $allowviewonline, $user_style, $user_lang, $user_timezone, $user_dateformat, $userdata['session_id']);
  807. }
  808. else
  809. {
  810.         include("includes/functions_selects.php");
  811.  
  812.         if ( !isset($coppa) )
  813.         {
  814.                 $coppa = FALSE;
  815.         }
  816.  
  817.         if ( !isset($user_template) )
  818.         {
  819.                 $selected_template = $board_config['system_template'];
  820.         }
  821.  
  822.         $avatar_img = '';
  823.         if ( $user_avatar_type )
  824.         {
  825.                 switch( $user_avatar_type )
  826.                 {
  827.                         case USER_AVATAR_UPLOAD:
  828.                                 $avatar_img = ( $board_config['allow_avatar_upload'] ) ? '<img src="' . $board_config['avatar_path'] . '/' . $user_avatar . '" alt="" />' : '';
  829.                                 break;
  830.                         case USER_AVATAR_REMOTE:
  831.                                 $avatar_img = ( $board_config['allow_avatar_remote'] ) ? '<img src="' . $user_avatar . '" alt="" />' : '';
  832.                                 break;
  833.                         case USER_AVATAR_GALLERY:
  834.                                 $avatar_img = ( $board_config['allow_avatar_local'] ) ? '<img src="' . $board_config['avatar_gallery_path'] . '/' . $user_avatar . '" alt="" />' : '';
  835.                                 break;
  836.                 }
  837.         }
  838.  
  839.         $s_hidden_fields = '<input type="hidden" name="mode" value="' . $mode . '" /><input type="hidden" name="agreed" value="true" /><input type="hidden" name="coppa" value="' . $coppa . '" />';
  840.         if( $mode == 'editprofile' )
  841.         {
  842.                 $s_hidden_fields .= '<input type="hidden" name="user_id" value="' . $userdata['user_id'] . '" />';
  843.                 //
  844.                 // Send the users current email address. If they change it, and account activation is turned on
  845.                 // the user account will be disabled and the user will have to reactivate their account.
  846.                 //
  847.                 $s_hidden_fields .= '<input type="hidden" name="current_email" value="' . $userdata['user_email'] . '" />';
  848.         }
  849.  
  850.         if ( !empty($user_avatar_local) )
  851.         {
  852.                 $s_hidden_fields .= '<input type="hidden" name="avatarlocal" value="' . $user_avatar_local . '" />';
  853.         }
  854.  
  855.         $html_status =  ( $userdata['user_allowhtml'] && $board_config['allow_html'] ) ? $lang['HTML_is_ON'] : $lang['HTML_is_OFF'];
  856.         $bbcode_status = ( $userdata['user_allowbbcode'] && $board_config['allow_bbcode']  ) ? $lang['BBCode_is_ON'] : $lang['BBCode_is_OFF'];
  857.         $smilies_status = ( $userdata['user_allowsmile'] && $board_config['allow_smilies']  ) ? $lang['Smilies_are_ON'] : $lang['Smilies_are_OFF'];
  858.  
  859.         if ( $error )
  860.         {
  861.                 $template->set_filenames(array(
  862.                         'reg_header' => 'error_body.tpl')
  863.                 );
  864.                 $template->assign_vars(array(
  865.                         'ERROR_MESSAGE' => $error_msg)
  866.                 );
  867.                 $template->assign_var_from_handle('ERROR_BOX', 'reg_header');
  868.         }
  869.  
  870.         $template->set_filenames(array(
  871.                 'body' => 'profile_add_body.tpl')
  872.         );
  873.  
  874.         if ( $mode == 'editprofile' )
  875.         {
  876.                 $template->assign_block_vars('switch_edit_profile', array());
  877.         }
  878.  
  879.         if ( ($mode == 'register') || ($board_config['allow_namechange']) )
  880.         {
  881.                 $template->assign_block_vars('switch_namechange_allowed', array());
  882.         }
  883.         else
  884.         {
  885.                 $template->assign_block_vars('switch_namechange_disallowed', array());
  886.         }
  887.  
  888.         //
  889.         // Let's do an overall check for settings/versions which would prevent
  890.         // us from doing file uploads....
  891.         //
  892.         $ini_val = ( phpversion() >= '4.0.0' ) ? 'ini_get' : 'get_cfg_var';
  893.         $form_enctype = ( @$ini_val('file_uploads') == '0' || strtolower(@$ini_val('file_uploads') == 'off') || phpversion() == '4.0.4pl1' || !$board_config['allow_avatar_upload'] || ( phpversion() < '4.0.3' && @$ini_val('open_basedir') != '' ) ) ? '' : 'enctype="multipart/form-data"';
  894.  
  895.         $template->assign_vars(array(
  896.                 'USERNAME' => $username,
  897.                 'CUR_PASSWORD' => $cur_password,
  898.                 'NEW_PASSWORD' => $new_password,
  899.                 'PASSWORD_CONFIRM' => $password_confirm,
  900.                 'EMAIL' => $email,
  901.                 'YIM' => $yim,
  902.                 'ICQ' => $icq,
  903.                 'MSN' => $msn,
  904.                 'AIM' => $aim,
  905.                 'OCCUPATION' => $occupation,
  906.                 'INTERESTS' => $interests,
  907.                 'LOCATION' => $location,
  908.                 'WEBSITE' => $website,
  909.                 'SIGNATURE' => str_replace('<br />', "\n", $signature),
  910.                 'VIEW_EMAIL_YES' => ( $viewemail ) ? 'checked="checked"' : '',
  911.                 'VIEW_EMAIL_NO' => ( !$viewemail ) ? 'checked="checked"' : '',
  912.                 'HIDE_USER_YES' => ( !$allowviewonline ) ? 'checked="checked"' : '',
  913.                 'HIDE_USER_NO' => ( $allowviewonline ) ? 'checked="checked"' : '',
  914.                 'NOTIFY_PM_YES' => ( $notifypm ) ? 'checked="checked"' : '',
  915.                 'NOTIFY_PM_NO' => ( !$notifypm ) ? 'checked="checked"' : '',
  916.                 'POPUP_PM_YES' => ( $popup_pm ) ? 'checked="checked"' : '',
  917.                 'POPUP_PM_NO' => ( !$popup_pm ) ? 'checked="checked"' : '',
  918.                 'ALWAYS_ADD_SIGNATURE_YES' => ( $attachsig ) ? 'checked="checked"' : '',
  919.                 'ALWAYS_ADD_SIGNATURE_NO' => ( !$attachsig ) ? 'checked="checked"' : '',
  920.                 'NOTIFY_REPLY_YES' => ( $notifyreply ) ? 'checked="checked"' : '',
  921.                 'NOTIFY_REPLY_NO' => ( !$notifyreply ) ? 'checked="checked"' : '',
  922.                 'ALWAYS_ALLOW_BBCODE_YES' => ( $allowbbcode ) ? 'checked="checked"' : '',
  923.                 'ALWAYS_ALLOW_BBCODE_NO' => ( !$allowbbcode ) ? 'checked="checked"' : '',
  924.                 'ALWAYS_ALLOW_HTML_YES' => ( $allowhtml ) ? 'checked="checked"' : '',
  925.                 'ALWAYS_ALLOW_HTML_NO' => ( !$allowhtml ) ? 'checked="checked"' : '',
  926.                 'ALWAYS_ALLOW_SMILIES_YES' => ( $allowsmilies ) ? 'checked="checked"' : '',
  927.                 'ALWAYS_ALLOW_SMILIES_NO' => ( !$allowsmilies ) ? 'checked="checked"' : '',
  928.                 'ALLOW_AVATAR' => $board_config['allow_avatar_upload'],
  929.                 'AVATAR' => $avatar_img,
  930.                 'AVATAR_SIZE' => $board_config['avatar_filesize'],
  931.                 'LANGUAGE_SELECT' => language_select($user_lang, 'language'),
  932.                 'STYLE_SELECT' => style_select($user_style, 'style'),
  933.                 'TIMEZONE_SELECT' => tz_select($user_timezone, 'timezone'),
  934.                 'DATE_FORMAT' => $user_dateformat,
  935.                 'HTML_STATUS' => $html_status,
  936.                 'BBCODE_STATUS' => sprintf($bbcode_status, '<a href="' . append_sid("faq.$phpEx?mode=bbcode") . '" target="_phpbbcode">', '</a>'),
  937.                 'SMILIES_STATUS' => $smilies_status,
  938.  
  939.                 'L_CURRENT_PASSWORD' => $lang['Current_password'],
  940.                 'L_NEW_PASSWORD' => ( $mode == 'register' ) ? $lang['Password'] : $lang['New_password'],
  941.                 'L_CONFIRM_PASSWORD' => $lang['Confirm_password'],
  942.                 'L_CONFIRM_PASSWORD_EXPLAIN' => ( $mode == 'editprofile' ) ? $lang['Confirm_password_explain'] : '',
  943.                 'L_PASSWORD_IF_CHANGED' => ( $mode == 'editprofile' ) ? $lang['password_if_changed'] : '',
  944.                 'L_PASSWORD_CONFIRM_IF_CHANGED' => ( $mode == 'editprofile' ) ? $lang['password_confirm_if_changed'] : '',
  945.                 'L_SUBMIT' => $lang['Submit'],
  946.                 'L_RESET' => $lang['Reset'],
  947.                 'L_ICQ_NUMBER' => $lang['ICQ'],
  948.                 'L_MESSENGER' => $lang['MSNM'],
  949.                 'L_YAHOO' => $lang['YIM'],
  950.                 'L_WEBSITE' => $lang['Website'],
  951.                 'L_AIM' => $lang['AIM'],
  952.                 'L_LOCATION' => $lang['Location'],
  953.                 'L_OCCUPATION' => $lang['Occupation'],
  954.                 'L_BOARD_LANGUAGE' => $lang['Board_lang'],
  955.                 'L_BOARD_STYLE' => $lang['Board_style'],
  956.                 'L_TIMEZONE' => $lang['Timezone'],
  957.                 'L_DATE_FORMAT' => $lang['Date_format'],
  958.                 'L_DATE_FORMAT_EXPLAIN' => $lang['Date_format_explain'],
  959.                 'L_YES' => $lang['Yes'],
  960.                 'L_NO' => $lang['No'],
  961.                 'L_INTERESTS' => $lang['Interests'],
  962.                 'L_ALWAYS_ALLOW_SMILIES' => $lang['Always_smile'],
  963.                 'L_ALWAYS_ALLOW_BBCODE' => $lang['Always_bbcode'],
  964.                 'L_ALWAYS_ALLOW_HTML' => $lang['Always_html'],
  965.                 'L_HIDE_USER' => $lang['Hide_user'],
  966.                 'L_ALWAYS_ADD_SIGNATURE' => $lang['Always_add_sig'],
  967.  
  968.                 'L_AVATAR_PANEL' => $lang['Avatar_panel'],
  969.                 'L_AVATAR_EXPLAIN' => sprintf($lang['Avatar_explain'], $board_config['avatar_max_width'], $board_config['avatar_max_height'], (round($board_config['avatar_filesize'] / 1024))),
  970.                 'L_UPLOAD_AVATAR_FILE' => $lang['Upload_Avatar_file'],
  971.                 'L_UPLOAD_AVATAR_URL' => $lang['Upload_Avatar_URL'],
  972.                 'L_UPLOAD_AVATAR_URL_EXPLAIN' => $lang['Upload_Avatar_URL_explain'],
  973.                 'L_AVATAR_GALLERY' => $lang['Select_from_gallery'],
  974.                 'L_SHOW_GALLERY' => $lang['View_avatar_gallery'],
  975.                 'L_LINK_REMOTE_AVATAR' => $lang['Link_remote_Avatar'],
  976.                 'L_LINK_REMOTE_AVATAR_EXPLAIN' => $lang['Link_remote_Avatar_explain'],
  977.                 'L_DELETE_AVATAR' => $lang['Delete_Image'],
  978.                 'L_CURRENT_IMAGE' => $lang['Current_Image'],
  979.  
  980.                 'L_SIGNATURE' => $lang['Signature'],
  981.                 'L_SIGNATURE_EXPLAIN' => sprintf($lang['Signature_explain'], $board_config['max_sig_chars']),
  982.                 'L_NOTIFY_ON_REPLY' => $lang['Always_notify'],
  983.                 'L_NOTIFY_ON_REPLY_EXPLAIN' => $lang['Always_notify_explain'],
  984.                 'L_NOTIFY_ON_PRIVMSG' => $lang['Notify_on_privmsg'],
  985.                 'L_POPUP_ON_PRIVMSG' => $lang['Popup_on_privmsg'],
  986.                 'L_POPUP_ON_PRIVMSG_EXPLAIN' => $lang['Popup_on_privmsg_explain'],
  987.                 'L_PREFERENCES' => $lang['Preferences'],
  988.                 'L_PUBLIC_VIEW_EMAIL' => $lang['Public_view_email'],
  989.                 'L_ITEMS_REQUIRED' => $lang['Items_required'],
  990.                 'L_REGISTRATION_INFO' => $lang['Registration_info'],
  991.                 'L_PROFILE_INFO' => $lang['Profile_info'],
  992.                 'L_PROFILE_INFO_NOTICE' => $lang['Profile_info_warn'],
  993.                 'L_EMAIL_ADDRESS' => $lang['Email_address'],
  994.  
  995.                 'S_ALLOW_AVATAR_UPLOAD' => $board_config['allow_avatar_upload'],
  996.                 'S_ALLOW_AVATAR_LOCAL' => $board_config['allow_avatar_local'],
  997.                 'S_ALLOW_AVATAR_REMOTE' => $board_config['allow_avatar_remote'],
  998.                 'S_HIDDEN_FIELDS' => $s_hidden_fields,
  999.                 'S_FORM_ENCTYPE' => $form_enctype,
  1000.                 'S_PROFILE_ACTION' => append_sid("profile.$phpEx"))
  1001.         );
  1002.  
  1003.         //
  1004.         // This is another cheat using the block_var capability
  1005.         // of the templates to 'fake' an IF...ELSE...ENDIF solution
  1006.         // it works well :)
  1007.         //
  1008.         if ( $mode != 'register' )
  1009.         {
  1010.                 if ( $userdata['user_allowavatar'] && ( $board_config['allow_avatar_upload'] || $board_config['allow_avatar_local'] || $board_config['allow_avatar_remote'] ) )
  1011.                 {
  1012.                         $template->assign_block_vars('switch_avatar_block', array() );
  1013.  
  1014.                         if ( $board_config['allow_avatar_upload'] && file_exists(@phpbb_realpath('./' . $board_config['avatar_path'])) )
  1015.                         {
  1016.                                 if ( $form_enctype != '' )
  1017.                                 {
  1018.                                         $template->assign_block_vars('switch_avatar_block.switch_avatar_local_upload', array() );
  1019.                                 }
  1020.                                 $template->assign_block_vars('switch_avatar_block.switch_avatar_remote_upload', array() );
  1021.                         }
  1022.  
  1023.                         if ( $board_config['allow_avatar_remote'] )
  1024.                         {
  1025.                                 $template->assign_block_vars('switch_avatar_block.switch_avatar_remote_link', array() );
  1026.                         }
  1027.  
  1028.                         if ( $board_config['allow_avatar_local'] && file_exists(@phpbb_realpath('./' . $board_config['avatar_gallery_path'])) )
  1029.                         {
  1030.                                 $template->assign_block_vars('switch_avatar_block.switch_avatar_local_gallery', array() );
  1031.                         }
  1032.                 }
  1033.         }
  1034. }
  1035.  
  1036. function docookie($setuser_id, $setusername, $setuser_password, $setstorynum, $setumode, $setuorder, $setthold, $setnoscore, $setublockon, $settheme, $setcommentmax) {
  1037.     $info = base64_encode("$setuser_id:$setusername:$setuser_password:$setstorynum:$setumode:$setuorder:$setthold:$setnoscore:$setublockon:$settheme:$setcommentmax");
  1038.     setcookie("user","$info",time()+15552000);
  1039. }
  1040. $template->pparse('body');
  1041.  
  1042. include("includes/page_tail.php");
  1043.  
  1044. ?>