X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fmailmgr.php;h=e3a970c3c713d76cc91ffc3b2bcb279ed99bb7a5;hb=8d7cdc537ab4b1329fe0ef8c4d976545c12e14c3;hp=5613c3baecb238b47b4bea5e7c155f7c8cf511dc;hpb=31691c02c1802a699c4595448919cce161834c77;p=brisk.git diff --git a/web/mailmgr.php b/web/mailmgr.php index 5613c3b..e3a970c 100644 --- a/web/mailmgr.php +++ b/web/mailmgr.php @@ -22,6 +22,19 @@ * */ +foreach (array("HTTP_HOST", "DOCUMENT_ROOT") as $i) { + if (isset($_SERVER[$i])) { + $$i = $_SERVER[$i]; + } + } + +foreach (array("f_act", "f_code", "f_hash") as $i) { + if (isset($_GET[$i])) { + $$i = $_GET[$i]; + } + } + + $G_base = ""; ini_set("max_execution_time", "240"); @@ -59,9 +72,9 @@ function main() { break; } - if (($bdb->user_update_flag_ty($mai->ucode, - USER_FLAG_TY_DISABLE, USER_DIS_REA_NU_MAILED, - USER_FLAG_TY_DISABLE, USER_DIS_REA_NU_TOBECHK)) == FALSE) { + if (($bdb->user_update_flag_ty($mai->ucode, USER_FLAG_TY_DISABLE, + TRUE, USER_DIS_REA_NU_MAILED, + TRUE, USER_DIS_REA_NU_TOBECHK)) == FALSE) { $errcode = 10003; break; } @@ -72,12 +85,18 @@ function main() { } $bdb->transaction('COMMIT'); - singlemsg("Verifica della e-mail andata a buon fine.", "Verifica della e-mail andata a buon fine."); + singlemsg("Verifica della e-mail andata a buon fine.", "Verifica della e-mail andata a buon fine.
Riceverai a breve una email con la tua nuova password.
Benvenuto!"); $errcode = 0; } while (FALSE); if ($errcode) { - singlemsg("E' occorso un errore durante la verifica della e-mail.", - sprintf("E' occorso un errore durante la verifica della e-mail.

Codice d'errore: %d.
", $errcode)); + if ($errcode == 10002) { + singlemsg("L'email è già stata verificata con successo.", + "L'email è già stata verificata con successo, ora attenda che le venga recapitata la password."); + } + else { + singlemsg("E' occorso un errore durante la verifica della e-mail.", + sprintf("E' occorso un errore durante la verifica della e-mail.

Codice d'errore: %d.
", $errcode)); + } $bdb->transaction('ROLLBACK'); } } @@ -86,4 +105,4 @@ function main() { } main(); -?> \ No newline at end of file +?>