Reputation: 23
How can I change date format in joomla module named DOCman?
Currently it look like: "Wednesday, 25 September 2013"
and i want something like this: "25-09-2013"
Thanks in advance.
ps: I tried this but it is for older version http://www.alexwalker.co.uk/joomla-solutions/6-how-to-change-date-format-in-docman
Upvotes: 1
Views: 603
Reputation: 23
Found it!
it's located in: ...\components\com_docman\views\list\tmpl\table.php
line number: 176
Change to:
<?= @date(array('date' => $document->publish_date, 'format' => '%d.%m.%Y (%H:%M:%S)' )); ?>
Result:
25.09.2013 (23:42:53)
:)
Upvotes: 1
Reputation: 840
The last time I checked with the developers of DOCman about this, this was not possible due to a bug. It is due to be fixed for RC2.
Upvotes: 0