-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1334 Improve footer and subforum view
- Loading branch information
Yannick
committed
Sep 4, 2015
1 parent
1094482
commit 26629bd
Showing
3 changed files
with
17 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
<?php | ||
$style = ''; | ||
|
||
if ($current_id == $cur_forum['fid']) | ||
?> | ||
<a href="<?php echo $page ?>?id=<?php echo $cur_forum['fid'] ?>" class="list-group-item <?php echo $item_status ?>"> | ||
<?php echo luna_htmlspecialchars($cur_forum['forum_name']) ?> | ||
</a> | ||
<div class="row forum-row <?php echo $item_status ?>"> | ||
<div class="col-md-11 col-sm-10 col-xs-8"> | ||
<strong><a href="viewforum.php?id=<?php echo $cur_forum['fid'] ?>"><?php echo luna_htmlspecialchars($cur_forum['forum_name']) ?></a></strong><br /> | ||
<?php echo $forum_desc ?> | ||
</div> | ||
<div class="col-md-1 col-sm-2 col-xs-4 text-center"> | ||
<?php echo '<b>'.$cur_forum['num_topics'].'</b> '.$topics_label; ?><br /> | ||
<?php echo '<b>'.$cur_forum['num_posts'].'</b> '.$posts_label; ?> | ||
</div> | ||
</div> |