to links, each category name when clicked gets you only the news from
that category!
edit inc/mod/editnews.mdu, and find this:
- Code: Select all
$cat[$row['id']] = $row['name'];
replace it with this:
- Code: Select all
$cat[$row['id']] = '<a href="?mod=editnews&category='.$row['id'].'">'.$row['name'].'</a>';
That's it! now log in and check it in edit news.
