$template->param(COINCREATIONTIME => localtime($coininfo[0])."");
if ( $coininfosize == 1 && $requestedaction eq "" ) {
- $template->param(NOTYETFLIPPED => 1);
+ $template->param(STATUS_NOTYETFLIPPED => 1);
}
elsif ( $coininfosize == 1 && $requestedaction eq "flip" ) {
$result = int(rand(2));
$coins_db{$requestedcoinid} = $coins_db{$requestedcoinid} .
"," . time .
"," . $result;
- $template->param(COINSTATUS => "Just flipped");
+ $template->param(STATUS_JUSTFLIPPED => 1);
$template->param(COINRESULT => translateresult($result));
}
elsif ( $coininfosize == 3 ) {
- $template->param(COINSTATUS => "Flipped @ " . localtime($coininfo[1]));
+ $template->param(STATUS_FLIPPED => 1);
+ $template->param(COINFLIPPEDTIME => localtime($coininfo[1])."");
$template->param(COINRESULT => translateresult($coininfo[2]));
}
}