Minor Bugs and solutions

Re: New plugin: Custom reports

by Davo Smith -
Number of replies: 0
Picture of Core developers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers
@Stuart You will need to use your database built-in formatting commands to convert the date into the format you want: postgres: select to_char(unix_timestamp(datefield), 'DD/MM/YYYY') ... mySQL: select from_unixtime(datefield, '%d/%m/%y') ...