Exemplo n.º 1
0
<?php

if (!isset($_GET['handle'])) {
    response_header('Error: no handle selected');
    report_error('Error: no handle selected for display');
    response_footer();
    exit;
}
require 'bugs/pear-bug-accountrequest.php';
$account = new PEAR_Bug_Accountrequest($_GET['handle']);
if ($account->pending()) {
    try {
        $account->sendEmail();
    } catch (Exception $e) {
        response_header('Error: cannot send confirmation email');
        report_error('Error: confirmation email could not be sent: ' . $e->getMessage());
        response_footer();
        exit;
    }
} else {
    response_header('Error: handle does not need verification');
    report_error('Error: handle is either already verified or does not exist');
    response_footer();
    exit;
}
response_header('PEAR :: email re-sent');
?>
<h1>Verification email resent</h1>
<p>
The verification email has been sent to your email address.
</p>
Exemplo n.º 2
0
        $email = $request->email;
        $name = $_POST['name'];
        $user = $_POST['PEAR_USER'];
        include PEARWEB_TEMPLATEDIR . '/bugs/registernewaccount.php';
        response_footer();
        exit;
    } else {
        report_error('Unknown account, or account is not pending approval');
    }
}
if (isset($_GET['type']) && $_GET['type'] == 'bug') {
    echo '<h1>Confirm Bug Tracker Email Address</h1>';
    echo '<p>Please choose a username for opening future bugs/adding comments to existing bugs</p>';
    if (!empty($stripped['salt']) && strlen($salt = htmlspecialchars($stripped['salt'])) == 32) {
        $request = new PEAR_Bug_Accountrequest();
        if ($request->find($salt) && $request->pending()) {
            $email = $request->email;
            $user = $name = '';
            $errors = array();
            include PEARWEB_TEMPLATEDIR . '/bugs/registernewaccount.php';
            response_footer();
            exit;
        } else {
            report_error('Unknown salt');
        }
    } else {
        report_error('Unknown salt');
    }
} else {
    echo '<h1>Confirm Account</h1>';
    if (empty($stripped['salt']) || strlen($salt = htmlspecialchars($stripped['salt'])) != 32) {