Programming Tutorial: Covering All Your Bases
Make sure you cover all your bases when reseting variables:
if ($flag == "yes") {
$form->creationDate = null;
$form->runCount = 0;
$form->statusCode = 1;
} else {
$form->creationDate = null;
$form->runCount = 0;
$form->statusCode = 1;
}
Discovered by @zewillow
Leave a Reply
You must be logged in to post a comment.