Tarion, yes, that was a mistake I made which FireFly commented about in the first page of this thread
You need to change all the $xxxxxselected> in the template to $xxxxxaway> (replace 'selected' with 'away').
Then, in member.php, find:
Code:
$dayname = "day".$returndate[2]."selected";
$$dayname = "selected";
$monthname = "month".$returndate[1]."selected";
$$monthname = "selected";
$yearname = "year".$returndate[0]."selected";
$$yearname = "selected";
And replace it with:
Code:
$dayname = "day".$returndate[2]."[high]away[/high]";
$$dayname = "selected";
$monthname = "month".$returndate[1]."[high]away[/high]";
$$monthname = "selected";
$yearname = "year".$returndate[0]."[high]away[/high]";
$$yearname = "selected";