Well as the date is changed now, it must be some strange bug again :/ I really should have saved date normally as a number, not as a string. Much useless work now :P
well, you can change the deadline only in "text" (year, month, date), not in a popdown-window (or whatever it is called, the thing when you upload a map you can choose the category/mapsize/tileset)
Changing the date with "text" is a real change. So it has to be the script yeah. The problem is that calculating a few days back is not that easy when you save the date as a String (dumb from me back then, but now changing it would be even more work) See:
$hh=""; $date1=date("Y");$date3=date("m"); $date2=date("d")-5; if ($date2 <1) {$date3=$date3-1;$date2=30+$date2;} if ($date3 <1) {$date3=12; $date1 = $date1-1;} if ($date2<10){$hh='0';} if ($date3<10) {$h='';} $date=$date1.", ".$h.$date3.", ".$hh.$date2;