1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-16 11:36:08 +02:00

Added "No Replies" to forum status icons. (Bootstrap only)

This commit is contained in:
Cameron
2016-03-22 23:38:58 -07:00
parent e930ee68f1
commit 7c458dbed2
5 changed files with 31 additions and 9 deletions

View File

@@ -330,7 +330,8 @@ foreach ($forumList['parents'] as $parent)
$status = parse_parent($parent);
$pVars->PARENTSTATUS = $status;
$pVars->PARENTNAME = "<a id='".$frm->name2id($parent['forum_name'])."'>".$parent['forum_name']."</a>";
// $pVars->PARENTNAME = "<a id='".$frm->name2id($parent['forum_name'])."'>".$parent['forum_name']."</a>";
$pVars->PARENTNAME = $parent['forum_name'];
$forum_string .= $tp->simpleParse($FORUM_MAIN_PARENT, $pVars);
if (!count($forumList['forums'][$parent['forum_id']]))
{
@@ -338,7 +339,7 @@ foreach ($forumList['parents'] as $parent)
}
else
{
//TODO: Rework the restricted string
//TODO: Rework the restricted string
foreach($forumList['forums'][$parent['forum_id']] as $f)
{
if ($f['forum_class'] == e_UC_ADMIN && ADMIN)