diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-04 21:53:38 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-04 21:53:38 +0000 |
commit | 6a634b6ccd0fc8a7c629082e1213708b87f4adaf (patch) | |
tree | c9db11cd3111e41fabbbfd853e1b8a443a0a9456 /views/default/annotation | |
parent | 7433b07dac28a87a8d22bd0dd5fa78effe333255 (diff) | |
download | elgg-6a634b6ccd0fc8a7c629082e1213708b87f4adaf.tar.gz elgg-6a634b6ccd0fc8a7c629082e1213708b87f4adaf.tar.bz2 |
object/blog view uses new media view - needs some clean up
git-svn-id: http://code.elgg.org/elgg/trunk@7531 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/annotation')
-rw-r--r-- | views/default/annotation/generic_comment.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/annotation/generic_comment.php b/views/default/annotation/generic_comment.php index ac603e978..7b26756a3 100644 --- a/views/default/annotation/generic_comment.php +++ b/views/default/annotation/generic_comment.php @@ -3,14 +3,14 @@ * Elgg generic comment view * * @uses $vars['annotation'] ElggAnnotation object - * @uses $vars['full_view'] Display fill view or brief view + * @uses $vars['full'] Display fill view or brief view */ if (!isset($vars['annotation'])) { return true; } -$full_view = elgg_get_array_value('full_view', $vars, true); +$full_view = elgg_get_array_value('full', $vars, true); $comment = $vars['annotation']; |