From 9eae841ec5c036fa74565a3a06e6f53f2dc80af4 Mon Sep 17 00:00:00 2001 From: cash Date: Sun, 21 Nov 2010 13:21:44 +0000 Subject: removed deprecated tag library calls git-svn-id: http://code.elgg.org/elgg/trunk@7397 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/tagcloud/tagcloud.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'mod/tagcloud/tagcloud.php') diff --git a/mod/tagcloud/tagcloud.php b/mod/tagcloud/tagcloud.php index f5554ccba..ecbfc130c 100644 --- a/mod/tagcloud/tagcloud.php +++ b/mod/tagcloud/tagcloud.php @@ -7,7 +7,13 @@ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); $title = elgg_view_title(elgg_echo('tagcloud:site:title')); -$tags = display_tagcloud(0, 100, 'tags'); + +$options = array( + 'threshold' => 0, + 'limit' => 100, + 'tag_name' => 'tags', +); +$tags = elgg_view_tagcloud($options); $params = array( 'content' => $title . $tags, -- cgit v1.2.3