diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-15 12:34:48 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-15 12:34:48 +0000 |
commit | d43e034a36768b945986f827f81618492a58f750 (patch) | |
tree | d24eede5913545929a6f3236c36cc1942ccf1304 /views/default/annotation | |
parent | 2ce0878606a75a38dd2eef9403a9c94529f46d5f (diff) | |
download | elgg-d43e034a36768b945986f827f81618492a58f750.tar.gz elgg-d43e034a36768b945986f827f81618492a58f750.tar.bz2 |
moved likes forms into forms directory
git-svn-id: http://code.elgg.org/elgg/trunk@7631 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/annotation')
-rw-r--r-- | views/default/annotation/annotate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/annotation/annotate.php b/views/default/annotation/annotate.php index de2513587..d9deb6301 100644 --- a/views/default/annotation/annotate.php +++ b/views/default/annotation/annotate.php @@ -18,7 +18,7 @@ if ($vars['item']->annotation_id != 0) { $url = "<a href=\"{$performed_by->getURL()}\">{$performed_by->name}</a>"; $string = elgg_echo("river:posted:generic", array($url)) . " "; $string .= elgg_echo("{$subtype}:river:annotate") . " <a href=\"{$object->getURL()}\">" . $title . "</a> <span class='entity-subtext'>" . elgg_view_friendly_time($object->time_created) . "<a class='river_comment_form_button link'>Comment</a>"; -$string .= elgg_view('likes/forms/link', array('entity' => $object)); +$string .= elgg_view('forms/likes/link', array('entity' => $object)); $string .= "</span>"; if (elgg_get_context() != 'riverdashboard') { $comment = elgg_get_excerpt($comment, 200); |