
Richard Munroe - 2006-04-20 02:15:54
At least in MySQL 4.1, timestamps are NOT numeric. If you leave them set as numeric, you'll corrupt your timestamps. The fix is easy:
change:
case "timestamp":
$sql.="timestamp";
$is_numeric=true;
break;
To:
case "timestamp":
$sql.="timestamp";
$is_numeric=false;
break;
and all will be well.
Dick Munroe