BUGS in record_results2.php ??
I think there are 2 bugs in code below. I fixed it and began to receive e-mails for the results---Please correct me if i'm wrong..Erik
CODE START ------------------------------------------------------------------------
//
//Challengee has won!
//
if ($p2games>$p2games) <--BUG?
//Should be?
if ($p2games>=$p1games
{
#########################################################
$errors = mailer("5", $chall, $clubprefix, "$p1games-$p2games");
}
// Challenger has won!!
if ($p1games>=$p2games) <--BUG?
//Should be?
if ($p1games>$p2games
{
#########################################################
/* Swap positions
CODE END ----------------------------------------------------------------------------
