diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-07-08 12:10:14 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-07-08 12:10:14 +0000 |
commit | 35d3906d3230d747fbc64626c1420809ba4a0e79 (patch) | |
tree | d97ed92eeda1b941a33e0bce896357204aa1a6db /views/default/annotation/annotate.php | |
parent | 7a6b83050178b2f57fe6635192b8d76dab76ccaf (diff) | |
download | elgg-35d3906d3230d747fbc64626c1420809ba4a0e79.tar.gz elgg-35d3906d3230d747fbc64626c1420809ba4a0e79.tar.bz2 |
Moved all river entry metadata inside span (pushed onto new line) and added relevant css
git-svn-id: http://code.elgg.org/elgg/trunk@6660 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/annotation/annotate.php')
-rw-r--r-- | views/default/annotation/annotate.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/views/default/annotation/annotate.php b/views/default/annotation/annotate.php index 2cb35798b..5cd2879c2 100644 --- a/views/default/annotation/annotate.php +++ b/views/default/annotation/annotate.php @@ -12,8 +12,9 @@ $comment = get_annotation($vars['item']->annotation_id)->value; $url = "<a href=\"{$performed_by->getURL()}\">{$performed_by->name}</a>"; $string = sprintf(elgg_echo("river:posted:generic"),$url) . " "; - $string .= elgg_echo("{$subtype}:river:annotate") . " <a href=\"{$object->getURL()}\">" . $title . "</a> <span class='entity_subtext'>". friendly_time($object->time_created) ."</span> <a class='river_comment_form_button link'>Comment</a>"; + $string .= elgg_echo("{$subtype}:river:annotate") . " <a href=\"{$object->getURL()}\">" . $title . "</a> <span class='entity_subtext'>". friendly_time($object->time_created) ."<a class='river_comment_form_button link'>Comment</a>"; $string .= elgg_view('likes/forms/link', array('entity' => $object)); + $string .= "</span>"; if(get_context() != 'riverdashboard'){ $string .= "<div class='river_content_display'>"; if($comment){ |