shaver%mozilla.org e451a2b2d7 Beating some things with the rustico stick. Huzzah.
git-svn-id: svn://10.0.0.236/trunk@214061 18797224-902f-48f8-a5cc-f745e15eee43
2006-10-24 09:59:24 +00:00

36 lines
817 B
PHP

<?php
/**
* Verify a newly created account
*
* @package amo
* @subpackage docs
*
*/
startProcessing('verifyaccount.tpl', null, null, 'rustico');
require_once 'includes.php';
if (! (array_key_exists('email', $_GET) && array_key_exists('confirmationcode', $_GET)) ) {
triggerError('There was an error processing your request.');
}
$user = user::getUserByEmail($_GET['email']);
// Most likely not a valid email
if ($user===false) {
triggerError('There was an error processing your request.');
}
$confirmed = $user->confirm($_GET['confirmationcode']);
// Assign template variables.
$tpl->assign(
array( 'title' => 'Verify your Firefox Add-ons Account',
'currentTab' => null,
'email' => $_GET['email'],
'confirmed' => $confirmed
)
);
?>