Yes It is as 6.4 so far was only released in an international version and who said anything about an INCLUDE anywhere in this?? Me thinks its coffee time.
Here is the code your searching for in addpost.php
// -------------------------------------------------
// If there is a poll in this post we need to add it
if ($addpoll && $questions) {
$starttime = "0";
if ($ampm == "PM") { $hour = $hour + 12; }
$starttime = mktime($hour,$min,0,$month,$day,$year);
$starttime = $starttime - ($config['adjusttime'] * 86400);
$validstart = checkdate($month,$day,$year);
and you replace it with this
// -------------------------------------------------
// If there is a poll in this post we need to add it
if ($addpoll && $questions) {
$starttime = "0";
if ($ampm == "PM") { $hour = $hour + 12; }
if (!$enablestart) {
$starttime = mktime(0,0,0,$month,$day,$year);
}
else {
$starttime = mktime($hour,$min,0,$month,$day,$year);
}
$validstart = checkdate($month,$day,$year);