Additional modification will be needed.
In the addon_1stpagenews2.php after the line which says:
$xtr=getClForums($displayForums,'where','','forum_id','or','=');
add the following code:
/* Get forum titles and IDs */ $forumTitles=array(); if($res=db_simpleSelect(0,$Tf,'forum_id, forum_name')){ do $forumTitles[$res[0]]=$res[1]; while($res=db_simpleSelect(1)); } /* --Get forum titles and IDs */
After the line which says
$topics[$tid]['forum_id']=$res[5];
add:
$topics[$tid]['forum_title']=$forumTitles[$res[5]];
Afterall paste the variable {$forum_title} in the template addon_1stpagenews_cell2.html |