I didn't catch this bug when I reported the fix for the incorrect thread titles for monthly contests - sorry Data. It's a similar bug caused by creating threads at the last day of the month. To fix, in the ./includes/cron/nominate_topic_cron.php file,
FIND 2 occurences of:
Quote:
if (($day == 15) || ($day == $days_in_month)){
|
CHANGE that to:
Quote:
if ($day == 15 || $day == 1) {
|