summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2008-06-25 22:21:25 +0000
committerChristian Fowler <spider@viovio.com>2008-06-25 22:21:25 +0000
commit8bffd9ebe8eb1c90ccf7987f9e67fdc8622dbdca (patch)
tree01eab19079e5733699dd21400208c8b172207f81 /index.php
parent79ea622979651fcdea011e5471689087b04018bf (diff)
downloadtags-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.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.php b/index.php
index 3470256..e32e9a7 100644
--- a/index.php
+++ b/index.php
@@ -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' ));
}
?>