diff options
| -rwxr-xr-x | rss.php | 5 | ||||
| -rwxr-xr-x | templates/list_posts.tpl | 2 | ||||
| -rwxr-xr-x | templates/list_topics.tpl | 2 |
3 files changed, 5 insertions, 4 deletions
@@ -1,4 +1,6 @@ <?php + +use Bitweaver\KernelTools; /** * $Header$ * @@ -49,5 +51,4 @@ if( !empty( $_REQUEST['get_feed'] ) ) { $gBitSmarty->assign( 'feedlink', $feedlink ); -$gBitSystem->display( 'bitpackage:boards/boards_rss_form.tpl', tra( 'Select Feed' ) , array( 'display_mode' => 'display' )); -?> +$gBitSystem->display( 'bitpackage:boards/boards_rss_form.tpl', KernelTools::tra( 'Select Feed' ) , array( 'display_mode' => 'display' )); diff --git a/templates/list_posts.tpl b/templates/list_posts.tpl index 42e92ab..8085056 100755 --- a/templates/list_posts.tpl +++ b/templates/list_posts.tpl @@ -36,7 +36,7 @@ </label> {/form} {if $gBitSystem->isPackageActive( 'rss' )} - <a title="Get RSS Feed" href="{$smarty.const.BOARDS_PKG_URL}rss.php?t={$smarty.request.t}">{booticon iname="icon-rss" ipackage=rss iexplain="Get RSS Feed"}</a> + <a title="Get RSS Feed" href="{$smarty.const.BOARDS_PKG_URL}rss.php?t={$smarty.request.t}">{booticon iname="icon-rss" ipackage="icons" iexplain="Get RSS Feed"}</a> {/if} {assign var=flip value=$thread->getFlipFlop()} {foreach from=$flip item=flip_s key=flip_name} diff --git a/templates/list_topics.tpl b/templates/list_topics.tpl index 0b05eb8..224d537 100755 --- a/templates/list_topics.tpl +++ b/templates/list_topics.tpl @@ -16,7 +16,7 @@ <a class="item" href="{$smarty.const.BOARDS_PKG_URL}mailing_list.php?b={$board->mInfo.board_id}" title="Message Board Mailing List">{booticon ipackage="icons" iname="icon-envelope" iexplain="Edit Board Mailing List"}</a> {/if} {if $gBitSystem->isPackageActive( 'rss' )} - <a title="Get RSS Feed" href="{$smarty.const.BOARDS_PKG_URL}rss.php?b={$smarty.request.b}">{booticon iname="icon-rss" ipackage=rss iexplain="Get RSS Feed"}</a> + <a title="Get RSS Feed" href="{$smarty.const.BOARDS_PKG_URL}rss.php?b={$smarty.request.b}">{booticon iname="icon-rss" ipackage="icons" iexplain="Get RSS Feed"}</a> {/if} {if $board->hasUpdatePermission()} <a title="Edit message board" href="{$smarty.const.BOARDS_PKG_URL}edit.php?b={$board->mInfo.board_id}">{booticon iname="icon-edit" ipackage="icons" iexplain="Edit Message Board"}</a> |
