Anonymous

Topic: date

does anyone know of an easy fix to change the way the date is posted

currently - it post day, month, year

Wanted  - Month, Day, Year

Anonymous

Re: date

_includes/class.Job.php
function __construct($job_id = false)

In the $sql, look for *DATE_FORMAT(a.created_on, '%d-%m-%Y') AS created_on*.
Replace it with *DATE_FORMAT(a.created_on, '%m-%d-%Y') AS created_on*. smile