diff --git a/nixtape/artist.php b/nixtape/artist.php index 5d0c27238f4167e5ea6f9b189e6acbde22c1060c..8252f73a1b128744405831fc46698008a1b1a4b8 100644 --- a/nixtape/artist.php +++ b/nixtape/artist.php @@ -32,7 +32,7 @@ $smarty->assign("name", $artist->name); $smarty->assign("id", $artist->id); $smarty->assign("bio_summary", $artist->bio_summary); -$aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist'); +$aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 'artist'); if (!PEAR::isError ($aTagCloud)) { $smarty->assign('tagcloud', $aTagCloud); } diff --git a/nixtape/edit_group.php b/nixtape/edit_group.php index 9845a66ee7bac9730c54a90f5e9dfd713ca20155..bbd41f55037a10dfdefd24dccdaa28c2ecde4951 100644 --- a/nixtape/edit_group.php +++ b/nixtape/edit_group.php @@ -44,7 +44,7 @@ if ($_REQUEST['group']=='new') else { $smarty->assign('newform', true); - $aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist'); + $aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 'artist'); if (!PEAR::isError ($aTagCloud)) { $smarty->assign('tagcloud', $aTagCloud); @@ -132,7 +132,7 @@ if(isset($group->name)) # And display the page. $smarty->assign('errors', $errors); $smarty->assign('newform', false); - $aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist'); + $aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 'artist'); if (!PEAR::isError ($aTagCloud)) { $smarty->assign('tagcloud', $aTagCloud); diff --git a/nixtape/explore.php b/nixtape/explore.php index ed645fe623691fa5e030ac65a17e673bb9071886..fec7cc22ba75ea82219957471b3a763683c6cdba 100644 --- a/nixtape/explore.php +++ b/nixtape/explore.php @@ -27,7 +27,7 @@ require_once('data/Server.php'); require_once('data/TagCloud.php'); // This should be contextual based on the mode= parameter? -$aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist'); +$aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 'artist'); if (!PEAR::isError ($aTagCloud)) { $smarty->assign('tagcloud', $aTagCloud); } diff --git a/nixtape/group.php b/nixtape/group.php index 9d938c7ce308600a27aa50135349b805d24c02e4..f502469a2df40651b4ce0164955fff57c15053e1 100644 --- a/nixtape/group.php +++ b/nixtape/group.php @@ -36,7 +36,7 @@ if (! $_GET['group']) 'href' => $base_url.'/rdf.php?fmt=xml&page='.htmlentities($_SERVER['REQUEST_URI']) ) )); - $aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist'); + $aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 'artist'); if (!PEAR::isError ($aTagCloud)) { $smarty->assign('tagcloud', $aTagCloud); diff --git a/nixtape/track.php b/nixtape/track.php index 4cd0aabc1d3ad61303a4ff7b642d8860f82e2654..20e7f5760222f385ed8b7c9acda43efee2a83f74 100644 --- a/nixtape/track.php +++ b/nixtape/track.php @@ -33,7 +33,7 @@ $smarty->assign("albumurl", Server::getAlbumURL($track->artist_name, $track->alb $smarty->assign("artisturl", Server::getArtistURL($track->artist_name)); // no idea how this would be track-relevant -$aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist'); +$aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 'artist'); if (!PEAR::isError ($aTagCloud)) { $smarty->assign('tagcloud', $aTagCloud); } diff --git a/nixtape/user-edit.php b/nixtape/user-edit.php index fddd984e7e0d3a9da93b3c041ab41e7faa6bb078..78bd10029adb9faa1d58074d2fb4497fce654919 100644 --- a/nixtape/user-edit.php +++ b/nixtape/user-edit.php @@ -170,7 +170,7 @@ if(isset($this_user->name)) } # And display the page. - $aTagCloud = TagCloud::GenerateTagCloud('Scrobbles', 'artist'); + $aTagCloud = TagCloud::GenerateTagCloud('Free_Scrobbles', 'artist'); if (!PEAR::isError ($aTagCloud)) { $smarty->assign('tagcloud', $aTagCloud);