Forum Moderators: coopster
Notice: A non well formed numeric value encountered in functions.php on line 15
Here is the function it is refering to...
function formatDate($val)
{
$arr = explode('-', $val);
return date('M d, Y', mktime(0,0,0, $arr[1], $arr[2], $arr[0]));
}
The function simply alters the timestamp value retreived from the database and makes it much more legible. I dont know what this error even means, any help with this?