diff --git a/register_judges.inc.php b/register_judges.inc.php index a50f55a3..2ec97a51 100644 --- a/register_judges.inc.php +++ b/register_judges.inc.php @@ -22,6 +22,17 @@ */ ?> "Very Low", + -1=>"Low", + 0=>"Indifferent", + 1=>"Medium", + 2=>"High" +); + + + function personalStatus() { global $config; diff --git a/register_judges.php b/register_judges.php index 30e09931..87c7854f 100644 --- a/register_judges.php +++ b/register_judges.php @@ -89,6 +89,26 @@ $_POST['action']="login"; } } + else if($_GET['action']=="resend" && $_SESSION['email']) + { + //first see if the email matches directly from the registrations table + $q=mysql_query("SELECT * FROM judges + WHERE + email='".$_SESSION['email']."' + "); + $r=mysql_fetch_object($q); + if($r) + { + email_send("register_judges_resend_password",$_SESSION['email'],array("FAIRNAME"=>i18n($config['fairname'])),array("PASSWORD"=>$r->password,"EMAIL"=>$r->email)); + send_header("Judges Registration"); + echo notice(i18n("Your judge registration password has been sent to your email addess %1",array($_SESSION['email']))); + } + else + { + send_header("Judges Registration"); + echo error(i18n("Could not find a judge record with your email address")); + } + } else if($_GET['action']=="logout") { unset($_SESSION['email']);