diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-11 13:04:38 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-11 13:04:38 +0000 |
commit | a8e680230b2ca66cd1d95aaac228ed0c3a0d77ad (patch) | |
tree | e3abaa8ee8f18e99692480f93c9452cf9e079329 /views/default/annotation | |
parent | 8f0161a9d382b5610326576a6f572d0beb8c3e03 (diff) | |
download | elgg-a8e680230b2ca66cd1d95aaac228ed0c3a0d77ad.tar.gz elgg-a8e680230b2ca66cd1d95aaac228ed0c3a0d77ad.tar.bz2 |
Riverdashboard updated to new UI. DOM simplified a bit & css cleaned up.
git-svn-id: http://code.elgg.org/elgg/trunk@5358 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/annotation')
-rw-r--r-- | views/default/annotation/annotate.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/annotation/annotate.php b/views/default/annotation/annotate.php index 9e0d20881..a1940bed7 100644 --- a/views/default/annotation/annotate.php +++ b/views/default/annotation/annotate.php @@ -11,8 +11,8 @@ if($vars['item']->annotation_id != 0) $comment = get_annotation($vars['item']->annotation_id)->value; $url = "<a href=\"{$performed_by->getURL()}\">{$performed_by->name}</a>"; - $string = "<div class=\"river_content_title\">" . sprintf(elgg_echo("river:posted:generic"),$url) . " "; - $string .= elgg_echo("{$subtype}:river:annotate") . " <a href=\"{$object->getURL()}\">" . $title . "</a> " . friendly_time($object->time_created) . "</div>"; + $string = sprintf(elgg_echo("river:posted:generic"),$url) . " "; + $string .= elgg_echo("{$subtype}:river:annotate") . " <a href=\"{$object->getURL()}\">" . $title . "</a> " . friendly_time($object->time_created); if(get_context() != 'riverdashboard'){ $string .= "<div class=\"river_content_display\">"; if($comment){ |