sometime I need a view, in the admin list of News, of the summary data, because is possible have many title equal and the only data make the difference is the summary.
Ok, let's go
from your ftp:
open /modules/News/templates/articlelist.tpl and add between the 9 and 10 line:
{$summarytext}
and add between 20 and 21 line:
{$entry->summary}
save and close; than
open /modules/News/action.defaultadmin.php and add between 91 and 92 line:
$onerow->summary = $row['summary'];
and add between 113 and 114 line:
$this->smarty->assign('summarytext', $this->Lang('summary'));
save and close
Now you have the summary column in your admin news list view
byx
MoX
