summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BitBoardTopic.php8
-rw-r--r--templates/board_cat.tpl2
-rw-r--r--templates/board_table.tpl2
-rw-r--r--templates/legend_inc.tpl2
-rw-r--r--templates/list_boards.tpl6
5 files changed, 12 insertions, 8 deletions
diff --git a/BitBoardTopic.php b/BitBoardTopic.php
index 3702889..1275465 100644
--- a/BitBoardTopic.php
+++ b/BitBoardTopic.php
@@ -1,13 +1,13 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_boards/BitBoardTopic.php,v 1.23 2007/02/15 19:36:12 lsces Exp $
- * $Id: BitBoardTopic.php,v 1.23 2007/02/15 19:36:12 lsces Exp $
+ * $Header: /cvsroot/bitweaver/_bit_boards/BitBoardTopic.php,v 1.24 2007/02/16 21:05:41 nickpalmer Exp $
+ * $Id: BitBoardTopic.php,v 1.24 2007/02/16 21:05:41 nickpalmer Exp $
*
* Messageboards class to illustrate best practices when creating a new bitweaver package that
* builds on core bitweaver functionality, such as the Liberty CMS engine
*
* @author spider <spider@steelsun.com>
- * @version $Revision: 1.23 $ $Date: 2007/02/15 19:36:12 $ $Author: lsces $
+ * @version $Revision: 1.24 $ $Date: 2007/02/16 21:05:41 $ $Author: nickpalmer $
* @package boards
*/
@@ -506,7 +506,7 @@ If you no longer wish to watch this topic you can either click the \"Stop watchi
$flip['notify']['req']=5;
$flip['notify']['id']=$arr['th_thread_id'];
$flip['notify']['idname']='t';
- $flip['notify']['up']='mail-send-receive';
+ $flip['notify']['up']='mail-forward';
$flip['notify']['upname']='Reply Notification';
$flip['notify']['down']='internet-mail';
$flip['notify']['downname']='Reply Notification Disabled';
diff --git a/templates/board_cat.tpl b/templates/board_cat.tpl
index 8992657..27c771e 100644
--- a/templates/board_cat.tpl
+++ b/templates/board_cat.tpl
@@ -12,7 +12,7 @@
{if !empty($child.sub_count) && count($child.children)>0}
{foreach from=$child.children item=schild}
- {include file="bitpackage:bitboards/board_cat.tpl" child=$schild color=$scolor}
+ {include file="bitpackage:bitboards/board_cat.tpl" child=$schild color=$color}
{/foreach}
{/if}
</div>
diff --git a/templates/board_table.tpl b/templates/board_table.tpl
index 85daecc..656543b 100644
--- a/templates/board_table.tpl
+++ b/templates/board_table.tpl
@@ -25,6 +25,8 @@
<td style="width:1px;">{* topic tracking icons *}
{if $board.track.on && $board.track.mod}
{biticon ipackage="icons" iname="folder-new" ipath="large" iexplain="New Posts" iforce="icon"}
+ {else}
+ {biticon ipackage="icons" iname="folder" ipath="large" iexplain="New Posts" iforce="icon"}
{/if}
</td>
diff --git a/templates/legend_inc.tpl b/templates/legend_inc.tpl
index 1fe394a..9815e3a 100644
--- a/templates/legend_inc.tpl
+++ b/templates/legend_inc.tpl
@@ -2,7 +2,7 @@
<ul class="iconlegend">
{if $boardicons}
<li>{biticon ipackage="icons" iname="folder-new" ipath=large iexplain="New Posts" iforce="icon"} {tr}New Posts{/tr}</li>
- <li>{biticon ipackage="icons" iname="media-playback-pause" ipath=large iexplain="No New Posts" iforce="icon"} {tr}No New Posts{/tr}</li>
+ <li>{biticon ipackage="icons" iname="folder" ipath=large iexplain="No New Posts" iforce="icon"} {tr}No New Posts{/tr}</li>
{/if}
{if $topicicons}
<li>{biticon ipackage="icons" iname="emblem-readonly" ipath=large iexplain="Thread Closed" iforce="icon"} {tr}Thread Closed{/tr}</li>
diff --git a/templates/list_boards.tpl b/templates/list_boards.tpl
index 9e184ad..82751e1 100644
--- a/templates/list_boards.tpl
+++ b/templates/list_boards.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_boards/templates/list_boards.tpl,v 1.1 2006/09/23 03:47:27 spiderr Exp $ *}
+{* $Header: /cvsroot/bitweaver/_bit_boards/templates/list_boards.tpl,v 1.2 2007/02/16 21:05:41 nickpalmer Exp $ *}
{strip}
<div class="listing bitboard">
<div class="header">
@@ -8,7 +8,9 @@
<div class="body">
{foreach from=$ns item=child}
{assign var=heading value=1}
- {include file="bitpackage:bitboards/board_cat.tpl" child=$child color=$color}
+ {if $child.sub_count > 0}
+ {include file="bitpackage:bitboards/board_cat.tpl" child=$child color=$color}
+ {/if}
{/foreach}
{include file="bitpackage:bitboards/legend_inc.tpl" boardicons=1}