diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-06-02 15:07:05 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-06-02 15:07:05 -0400 |
commit | 03eb23688a2e9192f592c5f05c7eba693dc50d5a (patch) | |
tree | d5de31663d401371814fbf8d0735825d261a942a /mod/file | |
parent | 0db4a78e6ac5b574e2f63309d4923e5ff4450800 (diff) | |
download | elgg-03eb23688a2e9192f592c5f05c7eba693dc50d5a.tar.gz elgg-03eb23688a2e9192f592c5f05c7eba693dc50d5a.tar.bz2 |
Refs #4437 let the object/elements/summary view handle the tags
Diffstat (limited to 'mod/file')
-rw-r--r-- | mod/file/views/default/object/file.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mod/file/views/default/object/file.php b/mod/file/views/default/object/file.php index 1db9863c9..b3f530183 100644 --- a/mod/file/views/default/object/file.php +++ b/mod/file/views/default/object/file.php @@ -28,7 +28,6 @@ $author_text = elgg_echo('byline', array($owner_link)); $file_icon = elgg_view_entity_icon($file, 'small'); -$tags = elgg_view('output/tags', array('tags' => $file->tags)); $date = elgg_view_friendly_time($file->time_created); $comments_count = $file->countComments(); @@ -71,7 +70,6 @@ if ($full && !elgg_in_context('gallery')) { 'entity' => $file, 'metadata' => $metadata, 'subtitle' => $subtitle, - 'tags' => $tags, ); $params = $params + $vars; $summary = elgg_view('object/elements/summary', $params); @@ -100,7 +98,6 @@ if ($full && !elgg_in_context('gallery')) { 'entity' => $file, 'metadata' => $metadata, 'subtitle' => $subtitle, - 'tags' => $tags, 'content' => $excerpt, ); $params = $params + $vars; |