diff options
| author | Christian Fowler <spider@viovio.com> | 2008-06-25 22:21:25 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2008-06-25 22:21:25 +0000 |
| commit | 8bffd9ebe8eb1c90ccf7987f9e67fdc8622dbdca (patch) | |
| tree | 01eab19079e5733699dd21400208c8b172207f81 /index.php | |
| parent | 79ea622979651fcdea011e5471689087b04018bf (diff) | |
| download | tags-8bffd9ebe8eb1c90ccf7987f9e67fdc8622dbdca.tar.gz tags-8bffd9ebe8eb1c90ccf7987f9e67fdc8622dbdca.tar.bz2 tags-8bffd9ebe8eb1c90ccf7987f9e67fdc8622dbdca.zip | |
change display call to use a hash for display options, add display_mode to options hash
Diffstat (limited to 'index.php')
| -rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,10 +19,10 @@ if( isset($_REQUEST['tags']) ){ $tagData = $tag->getList( $tagHash ); $gBitSmarty->assign( 'tagData', $tagData["data"] ); $gBitSmarty->assign( 'tagsReq', $_REQUEST['tags'] ); - $gBitSystem->display( 'bitpackage:tags/list_content.tpl', tra( 'Tagged Content' ) ); + $gBitSystem->display( 'bitpackage:tags/list_content.tpl', tra( 'Tagged Content' ) , array( 'display_mode' => 'display' )); }else{ $listData = $tag->getList( $listHash ); $gBitSmarty->assign( 'tagData', $listData["data"] ); - $gBitSystem->display( 'bitpackage:tags/list_tags.tpl', tra( 'Tags' ) ); + $gBitSystem->display( 'bitpackage:tags/list_tags.tpl', tra( 'Tags' ) , array( 'display_mode' => 'display' )); } ?> |
