I found the problem, in admin/functions.php I had:
PHP Code:
//2root4u Donation Hack
global $donationbrackets, $donationtitles, $donationfield;
$donation = $post[$donationfield];
if(is_numeric($donation) && $donation>$donationbrackets[0]) {
$post[donationtitle] = $donationtitles[0];
$i = 1;
while(isset($donationbrackets[$i]) && ($donation > $donationbrackets[$i]))
$post[donationtitle] = $donationtitles[$i++];
}
////End 2root4u Donation Hack
after:
PHP Code:
$post[postdate]=vbdate($dateformat,$post[dateline]);
$post[posttime]=vbdate($timeformat,$post[dateline]);
Instead of before it, that fixed it. Nice hack again ty