X-Git-Url: http://git.vanrenterghem.biz/www.vanrenterghem.biz.git/blobdiff_plain/4b1ce0d83844cfd7c55e75a60ccb239882cd62e3..83ab5456767602f2a9860a7db7247f002ec96945:/phpBB2/profile.php diff --git a/phpBB2/profile.php b/phpBB2/profile.php deleted file mode 100644 index 749c3ff..0000000 --- a/phpBB2/profile.php +++ /dev/null @@ -1,124 +0,0 @@ - 80 ) ? ':' . trim($board_config['server_port']) . '/' : '/'; - -$server_url = $server_protocol . $server_name . $server_port . $script_name; - -// ----------------------- -// Page specific functions -// -function gen_rand_string($hash) -{ - $rand_str = dss_rand(); - - return ( $hash ) ? md5($rand_str) : substr($rand_str, 0, 8); -} -// -// End page specific functions -// --------------------------- - -// -// Start of program proper -// -if ( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) ) -{ - $mode = ( isset($HTTP_GET_VARS['mode']) ) ? $HTTP_GET_VARS['mode'] : $HTTP_POST_VARS['mode']; - $mode = htmlspecialchars($mode); - - if ( $mode == 'viewprofile' ) - { - include($phpbb_root_path . 'includes/usercp_viewprofile.'.$phpEx); - exit; - } - else if ( $mode == 'editprofile' || $mode == 'reg' ) - { - if ( !$userdata['session_logged_in'] && $mode == 'editprofile' ) - { - redirect(append_sid("login.$phpEx?redirect=profile.$phpEx&mode=editprofile", true)); - } - - include($phpbb_root_path . 'includes/usercp_register.'.$phpEx); - exit; - } - else if ( $mode == 'conf' ) - { - // Visual Confirmation - if ( $userdata['session_logged_in'] ) - { - exit; - } - - include($phpbb_root_path . 'includes/usercp_confirm.'.$phpEx); - exit; - } - else if ( $mode == 'sendpassword' ) - { - include($phpbb_root_path . 'includes/usercp_sendpasswd.'.$phpEx); - exit; - } - else if ( $mode == 'activate' ) - { - include($phpbb_root_path . 'includes/usercp_activate.'.$phpEx); - exit; - } - else if ( $mode == 'email' ) - { - include($phpbb_root_path . 'includes/usercp_email.'.$phpEx); - exit; - } -} - -redirect(append_sid("index.$phpEx", true)); - -?>