Re: Expiry Date Bug
Thanks for letting me know. Luckily the custom field called "expires" you are referring to is actually not being used....yet. I plan on having a count down timer for it in a later version.
The bug will be fixed in the next release 2.8.2 but if you'd like to fix it in the meantime, here's what you do.
Edit form_process.php and replace the following two lines
Code:
$tomorrow = mktime(date("G"),date("i"),date("s"),date("d")+$ad_length,date("m"),date("Y"));
$expires = date("d/m/Y G:i:s", $tomorrow);
with this line:
Code:
$expires = date('m/d/Y G:i:s', strtotime("+" . $ad_length . " days"));
That will start saving the dates correctly.