diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-12 07:35:27 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-12 07:35:27 +0000 |
commit | 5678d78c06e1a5ae021f41147e893b48bc2f9e1e (patch) | |
tree | 950e89edc94adecc5c62ac7eb3635c3e8f401549 /templates/show_tagcloud.inc.php | |
parent | b69c3a0ec66997f9045c9fbecada3e38da55c3dd (diff) | |
download | ampache-5678d78c06e1a5ae021f41147e893b48bc2f9e1e.tar.gz ampache-5678d78c06e1a5ae021f41147e893b48bc2f9e1e.tar.bz2 ampache-5678d78c06e1a5ae021f41147e893b48bc2f9e1e.zip |
renamed the tagcloud class to tag, started moving things around not sure where I like the taglist, seems weird in its own box
Diffstat (limited to 'templates/show_tagcloud.inc.php')
-rw-r--r-- | templates/show_tagcloud.inc.php | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/templates/show_tagcloud.inc.php b/templates/show_tagcloud.inc.php index 3d028dfb..a35ed387 100644 --- a/templates/show_tagcloud.inc.php +++ b/templates/show_tagcloud.inc.php @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2007 Ampache.org + Copyright (c) Ampache.org All Rights Reserved This program is free software; you can redistribute it and/or @@ -21,18 +21,8 @@ */ $web_path = Config::get('web_path'); ?> -<?php -function rebuild_query($ar) { - $ret = split('?', $_SERVER['REQUEST_URI']); - $ret = $ret[0] . '?'; - foreach($ar as $k=>$v) - { - $ret .= urlencode($k).'='.urlencode($v).'&'; - } - return $ret; -} -show_box_top($tagcloudHead, 'info-box'); -//make a map id->name +<?php show_box_top('', 'info-box'); +/* make a map id->name $tagbyid = array(); foreach ($tagcloudList as $f) $tagbyid[$f['id']] = $f; @@ -81,6 +71,6 @@ foreach ($tagcloudList as $f) { . 'tag='.$stags.'">'.$n.'</a> '; } } - +*/ ?> <?php show_box_bottom(); ?> |