From c5cc2821311012a8a4385a304a043c4b41f2afbb Mon Sep 17 00:00:00 2001 From: brettp Date: Mon, 31 Aug 2009 19:05:21 +0000 Subject: All line endings are now Unix-style. git-svn-id: https://code.elgg.org/elgg/trunk@3451 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/output/tags.php | 104 +++++++++++++++++++++--------------------- 1 file changed, 52 insertions(+), 52 deletions(-) (limited to 'views/default/output/tags.php') diff --git a/views/default/output/tags.php b/views/default/output/tags.php index 87b23cb63..901fa806b 100644 --- a/views/default/output/tags.php +++ b/views/default/output/tags.php @@ -1,55 +1,55 @@ -" . htmlentities($tag, ENT_QUOTES, 'UTF-8') . ""; - } - } - echo $tagstr; - - } + * @author Curverider Ltd + + * @link http://elgg.org/ + * + * @uses $vars['tags'] The tags to display + * @uses $vars['tagtype'] The tagtype, optionally + */ + + if (!empty($vars['subtype'])) { + $subtype = "&subtype=" . urlencode($vars['subtype']); + } else { + $subtype = ""; + } + if (!empty($vars['object'])) { + $object = "&object=" . urlencode($vars['object']); + } else { + $object = ""; + } + + if (empty($vars['tags']) && !empty($vars['value'])) + $vars['tags'] = $vars['value']; + if (!empty($vars['tags'])) { + + $tagstr = ""; + if (!is_array($vars['tags'])) + $vars['tags'] = array($vars['tags']); + + foreach($vars['tags'] as $tag) { + if (!empty($tagstr)) { + $tagstr .= ", "; + } + if (!empty($vars['type'])) { + $type = "&type={$vars['type']}"; + } else { + $type = ""; + } + if (is_string($tag)) { + $tagstr .= "" . htmlentities($tag, ENT_QUOTES, 'UTF-8') . ""; + } + } + echo $tagstr; + + } ?> \ No newline at end of file -- cgit v1.2.3