diff options
| author | bitweaver.org <bitweaver@users.sourceforge.net> | 2007-05-02 16:36:47 +0000 |
|---|---|---|
| committer | bitweaver.org <bitweaver@users.sourceforge.net> | 2007-05-02 16:36:47 +0000 |
| commit | 5d51b934c2e7d115b32ca11cde33fab6c1270d51 (patch) | |
| tree | b0481d3aa97359c40fb8d35b6096119b11c2dee3 | |
| parent | c5e412f45ea0ea61071d1d9caa607f27632fffcf (diff) | |
| download | boards-5d51b934c2e7d115b32ca11cde33fab6c1270d51.tar.gz boards-5d51b934c2e7d115b32ca11cde33fab6c1270d51.tar.bz2 boards-5d51b934c2e7d115b32ca11cde33fab6c1270d51.zip | |
xing: fix some basic template stuff
| -rw-r--r-- | board.php | 4 | ||||
| -rw-r--r-- | modules/mod_recent_posts.tpl | 11 | ||||
| -rw-r--r-- | styles/boards.css | 15 | ||||
| -rw-r--r-- | templates/board_cat.tpl | 2 |
4 files changed, 8 insertions, 24 deletions
@@ -1,6 +1,6 @@ <?php /** - * $Header: /cvsroot/bitweaver/_bit_boards/Attic/board.php,v 1.11 2007/03/31 15:54:13 squareing Exp $ + * $Header: /cvsroot/bitweaver/_bit_boards/Attic/board.php,v 1.12 2007/05/02 16:36:47 bitweaver Exp $ * Copyright (c) 2004 bitweaver Messageboards * All Rights Reserved. See copyright.txt for details and a complete list of authors. * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. @@ -78,7 +78,7 @@ if($gBitSystem->isPackageActive('pigeonholes')) { $rest =array(); if($gBitSystem->isPackageActive('pigeonholes')) { -// $rest['data']['title']="Uncategoried Boards"; +// $rest['data']['title']="Uncategorised Boards"; } else { // $rest['data']['title']="Board List"; } diff --git a/modules/mod_recent_posts.tpl b/modules/mod_recent_posts.tpl index 1e68324..95e71b6 100644 --- a/modules/mod_recent_posts.tpl +++ b/modules/mod_recent_posts.tpl @@ -1,4 +1,4 @@ -{* $Header: /cvsroot/bitweaver/_bit_boards/modules/mod_recent_posts.tpl,v 1.3 2007/03/31 15:54:14 squareing Exp $ *} +{* $Header: /cvsroot/bitweaver/_bit_boards/modules/mod_recent_posts.tpl,v 1.4 2007/05/02 16:36:47 bitweaver Exp $ *} {strip} {if $gBitSystem->isPackageActive('boards') && {$modLastBoardPosts} {bitmodule title="$moduleTitle" name="last_board_posts"} @@ -6,11 +6,10 @@ {section name=ix loop=$modLastBoardPosts} <li class="{cycle values="odd,even"}"> <a href="{$modLastBoardPosts[ix].display_url}">{$modLastBoardPosts[ix].title|default:"Comment"}</a> - <br /> - <div class="date">by {displayname hash=$modLastBoardPosts[ix]}<br/> - {$modLastBoardPosts[ix].created|bit_long_date} -</div> - + <div class="date"> + by {displayname hash=$modLastBoardPosts[ix]}<br /> + {$modLastBoardPosts[ix].created|bit_long_date} + </div> </li> {sectionelse} <li></li> diff --git a/styles/boards.css b/styles/boards.css index 9df4f35..a614927 100644 --- a/styles/boards.css +++ b/styles/boards.css @@ -1,18 +1,3 @@ -/* -.from --> .to -.mb-even-unapproved td --> .even.uapproved {} -.mb-odd-unapproved td --> .odd.uapproved {} -.mb-even-moved td --> .even.moved {} -.mb-odd-moved td --> .odd.moved {} -.mb-cat-indent --> .indent {} -.mb-sticky td --> .highlight {} -.mb-warned --> .warning {} -span.quote-title --> p.quotetitle {} - -unregistered user post highlight - --> .bitboard a.highlight {} -*/ - .bitboard .mb-threading {} .bitboard tr.odd.unapproved {background:#faa;} diff --git a/templates/board_cat.tpl b/templates/board_cat.tpl index 581cb78..63491fa 100644 --- a/templates/board_cat.tpl +++ b/templates/board_cat.tpl @@ -3,7 +3,7 @@ {if $child.data.title} <a href="javascript:toggle('bcat{$child.data.content_id|escape}');"><h{$heading|default:2}>{$child.data.title|escape}</h{$heading|default:2}></a> {elseif $gBitSystem->isPackageActive('pigeonholes')} - <a href="javascript:toggle('bcatnone');"><h{$heading|default:2}>Uncategoried</h{$heading|default:2}></a> + <a href="javascript:toggle('bcatnone');"><h{$heading|default:2}>Uncategorised</h{$heading|default:2}></a> {/if} <div id="bcat{$child.data.content_id|default:none}"> {if count($child.members) > 0} |
