diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-28 10:30:26 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-28 10:30:26 +0000 |
commit | 37d233139be3e345fc1d33f752c7c9c8cd4f6ff1 (patch) | |
tree | e5f5e8427cca43589bbfef8a13fd902ff377349b | |
parent | 4a17a58b082da0703bd9aa34a1b5adfc7ac74396 (diff) | |
download | elgg-37d233139be3e345fc1d33f752c7c9c8cd4f6ff1.tar.gz elgg-37d233139be3e345fc1d33f752c7c9c8cd4f6ff1.tar.bz2 |
The tag output view can now use $vars['value'], bringing it in line with all the others
git-svn-id: https://code.elgg.org/elgg/trunk@542 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | views/default/output/tags.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/views/default/output/tags.php b/views/default/output/tags.php index d7df0ccf2..eb64fe795 100644 --- a/views/default/output/tags.php +++ b/views/default/output/tags.php @@ -17,6 +17,8 @@ *
*/
+ if (empty($vars['tags']) && !empty($vars['value']))
+ $vars['tags'] = $vars['value'];
if (!empty($vars['tags'])) {
$string = "";
|