In homeindex.php, please find:
PHP Code:
$permissionssql=$DB_site->query_first("SELECT canmakenews FROM usergroup WHERE usergroupid=$bbuserinfo[usergroupid]");
$permissions=$permissionssql[canmakenews];
if ($permissions==1) {
eval("\$showcreatelink = \"".gettemplate("main_news_showcreatelink")."\";");
} else {
$showcreatelink="";
}
And change this to:
PHP Code:
$permissions=$DB_site->query_first("SELECT canmakenews FROM usergroup WHERE usergroupid=$bbuserinfo[usergroupid]");
if ($permissions[canmakenews]==1) {
eval("\$showcreatelink = \"".gettemplate("main_news_showcreatelink")."\";");
} else {
$showcreatelink="";
}
Also, please make sure that you installed the template main_news_showcreatelink with the contents from the text file of the same name, and that your usergroup permissions are set to allow posting news items.
The corrected homeindex.php is also in the ZIP file in the previous attachment.