Hey, I notice a bug in the script. If you hit preview it adds the date over and over for every time you hit preview. I found a simple fix that probably isn't the best way to fix it.
Find
Code:
if ((!is_array($dateadd['forums'])) OR (in_array($foruminfo['forumid'], $dateadd['forums']) AND !empty($_POST['subject'])))
and Replace It With
Code:
if ((!is_array($dateadd['forums'])) OR (in_array($foruminfo['forumid'], $dateadd['forums']) AND !empty($_POST['subject']))AND !$_POST['preview'])