Re: Order by date format d-m-Y
- Posted on:
- Author: Mori1983
Support Home Page › Forums › Joomla Software › Easy Folder Listing Pro Plugin › Order by date format d-m-Y › Re: Order by date format d-m-Y
August 7, 2013 at 11:15 am
#1347
Participant
Hi all, I’ll respond to myself in order to help if someone have de same problem I had.
I’ve edited the /joomla/plugins/content/easyfolderlistingpro.php file, only the way it shows the date. This way, it still orders by Y-m-d but it shows d-m-Y.
In line 787 I replaced
$html .= $rows[$i];
by
$pieces = explode(“-“, $rows[$i]);
$day = explode(” “, $pieces[2]);
$html .= $day[0].”-“.$pieces[1].”-“.$pieces[0].” “.$day[1];
So now it shows Day-Month-Year Hour:Minute:Second
Thank you all ^^