summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorwjames5 <will@tekimaki.com>2007-03-16 13:41:09 +0000
committerwjames5 <will@tekimaki.com>2007-03-16 13:41:09 +0000
commit9a6577b6180d1451f1c4eace3bca6a8a66dbf0aa (patch)
tree4063023cb55680a596c1509dc00c69644b4103ad /index.php
parente4e13c2d9c57bc88385c08d685c48124a95786c4 (diff)
downloadtags-9a6577b6180d1451f1c4eace3bca6a8a66dbf0aa.tar.gz
tags-9a6577b6180d1451f1c4eace3bca6a8a66dbf0aa.tar.bz2
tags-9a6577b6180d1451f1c4eace3bca6a8a66dbf0aa.zip
move tags cloud to its own tpl and display in multi locations
Diffstat (limited to 'index.php')
-rw-r--r--index.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/index.php b/index.php
index 0002815..1d6c98e 100644
--- a/index.php
+++ b/index.php
@@ -7,9 +7,12 @@ $gBitSystem->verifyPackage( 'tags' );
$tag = new LibertyTag();
$listHash = $_REQUEST;
+$tagHash = $_REQUEST;
if( isset($_REQUEST['tags']) ){
$listData = $tag->getContentList( $listHash );
+ $tagData = $tag->getList( $tagHash );
+ $gBitSmarty->assign( 'tagData', $tagData["data"] );
$gBitSmarty->assign( 'tagsReq', $_REQUEST['tags'] );
$gBitSystem->display( 'bitpackage:tags/list_content.tpl', tra( 'Tagged Content' ) );
}else{