diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2002-11-21 15:26:06 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2002-11-21 15:26:06 +0000 |
commit | fdbeac30d106272dd9564eb21b9cd6978e2fc5d2 (patch) | |
tree | fb3c1f8dd332b4a3b18f3128183b816815b2dc7b /phpBB/includes/usercp_activate.php | |
parent | f44c9705722d4bf3f05342c492d959df3131eccc (diff) | |
download | forums-fdbeac30d106272dd9564eb21b9cd6978e2fc5d2.tar forums-fdbeac30d106272dd9564eb21b9cd6978e2fc5d2.tar.gz forums-fdbeac30d106272dd9564eb21b9cd6978e2fc5d2.tar.bz2 forums-fdbeac30d106272dd9564eb21b9cd6978e2fc5d2.tar.xz forums-fdbeac30d106272dd9564eb21b9cd6978e2fc5d2.zip |
Moving UCP files to ucp/ directory
git-svn-id: file:///svn/phpbb/trunk@3073 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/usercp_activate.php')
-rw-r--r-- | phpBB/includes/usercp_activate.php | 106 |
1 files changed, 0 insertions, 106 deletions
diff --git a/phpBB/includes/usercp_activate.php b/phpBB/includes/usercp_activate.php deleted file mode 100644 index e823e4d211..0000000000 --- a/phpBB/includes/usercp_activate.php +++ /dev/null @@ -1,106 +0,0 @@ -<?php -/*************************************************************************** - * usercp_activate.php - * ------------------- - * begin : Saturday, Feb 13, 2001 - * copyright : (C) 2001 The phpBB Group - * email : support@phpbb.com - * - * $Id$ - * - ***************************************************************************/ - -/*************************************************************************** - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * - ***************************************************************************/ - -if ( !defined('IN_PHPBB') ) -{ - die('Hacking attempt'); - exit; -} - -$sql = "SELECT user_active, user_id, user_email, user_newpasswd, user_lang, user_actkey - FROM " . USERS_TABLE . " - WHERE user_id = " . intval($HTTP_GET_VARS[POST_USERS_URL]); -if ( !($result = $db->sql_query($sql)) ) -{ - message_die(GENERAL_ERROR, 'Could not obtain user information', '', __LINE__, __FILE__, $sql); -} - -if ( $row = $db->sql_fetchrow($result) ) -{ - if ( $row['user_active'] && $row['user_actkey'] == '' ) - { - $template->assign_vars(array( - 'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">') - ); - - message_die(GENERAL_MESSAGE, $lang['Already_activated']); - } - else if ( $row['user_actkey'] == $HTTP_GET_VARS['act_key'] ) - { - $sql_update_pass = ( $row['user_newpasswd'] != '' ) ? ", user_password = '" . str_replace("\'", "''", $row['user_newpasswd']) . "', user_newpasswd = ''" : ''; - - $sql = "UPDATE " . USERS_TABLE . " - SET user_active = 1, user_actkey = ''" . $sql_update_pass . " - WHERE user_id = " . $row['user_id']; - if ( !($result = $db->sql_query($sql)) ) - { - message_die(GENERAL_ERROR, 'Could not update users table', '', __LINE__, __FILE__, $sql_update); - } - - if ( $config['require_activation'] == USER_ACTIVATION_ADMIN && $sql_update_pass == '' ) - { - include($phpbb_root_path . 'includes/emailer.'.$phpEx); - $emailer = new emailer($config['smtp_delivery']); - - $email_headers = 'From: ' . $config['board_email'] . "\nReturn-Path: " . $config['board_email'] . "\n"; - - $emailer->use_template('admin_welcome_activated', $row['user_lang']); - $emailer->email_address($row['user_email']); - $emailer->set_subject();//$lang['Account_activated_subject'] - $emailer->extra_headers($email_headers); - - $emailer->assign_vars(array( - 'SITENAME' => $config['sitename'], - 'USERNAME' => $username, - 'PASSWORD' => $password_confirm, - 'EMAIL_SIG' => str_replace('<br />', "\n", "-- \n" . $config['board_email_sig'])) - ); - $emailer->send(); - $emailer->reset(); - - $template->assign_vars(array( - 'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">') - ); - - message_die(GENERAL_MESSAGE, $lang['Account_active_admin']); - } - else - { - $template->assign_vars(array( - 'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">') - ); - - $message = ( $sql_update_pass == '' ) ? $lang['Account_active'] : $lang['Password_activated']; - message_die(GENERAL_MESSAGE, $message); - } - } - else - { - message_die(GENERAL_MESSAGE, $lang['Wrong_activation']); - } -} -else -{ - message_die(GENERAL_MESSAGE, $lang['No_such_user']); -} - -?>
\ No newline at end of file |