chatty
Customer
Hi there,
dont know why that happend
but it's not nice to see hyroglyphs in the Download Listing Section.
It shows not the Dateline and not the Time correctly. It shows : %10%20%30 and so on.
Have a look into the screenshots.
On the screen before.PNG you see the Listing after newly installation of the Addon.
On the screen after.PNG you see the listing after my changes in actions/listings.php
find in actions/listings.php
replace it with
I know , your code do the same, but it won't show up.
After that it looks a bit nicer
dont know why that happend

It shows not the Dateline and not the Time correctly. It shows : %10%20%30 and so on.
Have a look into the screenshots.
On the screen before.PNG you see the Listing after newly installation of the Addon.
On the screen after.PNG you see the listing after my changes in actions/listings.php
find in actions/listings.php
PHP:
$listings['updated'] = vbdate($vbulletin->options['dateformat'] . ' ' . $vbulletin->options['timeformat'], $listings['updated'], true , false);
replace it with
PHP:
/* Cosmetics Start*/
// $listings['updated'] = vbdate($vbulletin->options['dateformat'] . ' ' . $vbulletin->options['timeformat'], $listings['updated'], true , false);
$formatted_dateline = vbdate($vbulletin->options['dateformat'], $listings['updated'], true);
$formatted_timeline = vbdate($vbulletin->options['timeformat'], $listings['updated']);
$listings['updated'] = $formatted_dateline. " ".$formatted_timeline;
/* Cosmetics End */
I know , your code do the same, but it won't show up.
After that it looks a bit nicer