TWO Things/Questions:
1. I want to change the display of news articles from 5 to 4. I went into the latestnews.tpl.php and changed the 'LIMIT 5' to 'LIMIT 4' in the following line
PHP Code:
//Get the top5 news stories//
$sSQL="SELECT newsID,nNewsTitle,nNewsContent,nPublish,nNav,hitcount,author, dateadded, modified FROM ".PREFIX."news WHERE nPublish='Y' ORDER BY dateadded DESC LIMIT 5";
But nothing happens or changes...
2. I want to change the date format (ie written by date) from d/m/y to m/d/y. Where would I be seeing to change this? the latest.tpl and popular.tpl.php ???
thanks!