aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/usercp_activate.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-03-17 14:07:56 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-03-17 14:07:56 +0000
commit9cc9bf0e9f389d829e1df4492a3f2cd3d3d90f2c (patch)
tree31823a8edd58570c0ab4e04903010a97c75a501e /phpBB/includes/usercp_activate.php
parentb1a4782f9329f4028e1ee9a4aef81d88843d87b4 (diff)
downloadforums-9cc9bf0e9f389d829e1df4492a3f2cd3d3d90f2c.tar
forums-9cc9bf0e9f389d829e1df4492a3f2cd3d3d90f2c.tar.gz
forums-9cc9bf0e9f389d829e1df4492a3f2cd3d3d90f2c.tar.bz2
forums-9cc9bf0e9f389d829e1df4492a3f2cd3d3d90f2c.tar.xz
forums-9cc9bf0e9f389d829e1df4492a3f2cd3d3d90f2c.zip
First splits of profile
git-svn-id: file:///svn/phpbb/trunk@2302 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/usercp_activate.php')
-rw-r--r--phpBB/includes/usercp_activate.php96
1 files changed, 96 insertions, 0 deletions
diff --git a/phpBB/includes/usercp_activate.php b/phpBB/includes/usercp_activate.php
new file mode 100644
index 0000000000..9c94747e46
--- /dev/null
+++ b/phpBB/includes/usercp_activate.php
@@ -0,0 +1,96 @@
+<?php
+/***************************************************************************
+ * avatars.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_PROFILE') )
+{
+ header("Location: ../index.$phpEx");
+ exit;
+}
+
+$sql = "SELECT user_id, user_email, user_newpasswd, user_lang
+ FROM " . USERS_TABLE . "
+ WHERE user_actkey = '" . str_replace("\'", "''", $HTTP_GET_VARS['act_key']) . "'";
+if ( $result = $db->sql_query($sql) )
+{
+ if ( $row = $db->sql_fetchrow($result) )
+ {
+ $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) )
+ {
+ if ( $board_config['require_activation'] == USER_ACTIVATION_ADMIN && $sql_update_pass == '' )
+ {
+ include($phpbb_root_path . 'includes/emailer.'.$phpEx);
+ $emailer = new emailer($board_config['smtp_delivery']);
+
+ $email_headers = "From: " . $board_config['board_email'] . "\nReturn-Path: " . $board_config['board_email'] . "\r\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" => $board_config['sitename'],
+ "USERNAME" => $username,
+ "PASSWORD" => $password_confirm,
+ "EMAIL_SIG" => str_replace("<br />", "\n", "-- \n" . $board_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_ERROR, "Couldn't update users table", "", __LINE__, __FILE__, $sql_update);
+ }
+ }
+ else
+ {
+ message_die(GENERAL_ERROR, $lang['Wrong_activation']); //wrongactiv
+ }
+}
+else
+{
+ message_die(GENERAL_ERROR, "Couldn't obtain user information", "", __LINE__, __FILE__, $sql);
+}
+
+?> \ No newline at end of file