I want the "Article Manager: Articles" list of articles to show the modification date rather than the created date. I tried to find a way to show the date an article was last modified in the article manager on Joomla 3.7.4.
Starting with Joomla 3.7.3, this feature was enabled https://joomla.stackexchange.com/a/21081
But JA Teline V 1.1.1 did not function, because of System – JA Content Type 1.0.9
editing files as shown below:
/plugins/system/jacontenttype/models/com_content.admin.articles.php
'created', 'a.created',
+ 'modified', 'a.modified',
'created_by', 'a.created_by',
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
'a.id, a.title, a.alias, a.checked_out, a.checked_out_time, a.catid' .
- ', a.state, a.access, a.created, a.created_by, a.created_by_alias, a.ordering, a.featured, a.language, a.hits' .
+ ', a.state, a.access, a.created, a.created_by, a.created_by_alias, a.modified, a.ordering, a.featured, a.language, a.hits' .
', a.publish_up, a.publish_down'
https://github.com/joomla/joomla-cms/pull/15825/files
Sorry for my English.
-
This topic was modified 7 years, 3 months ago by QIRIM.