diff options
Diffstat (limited to 'mod/bookmarks/views/default/river/object')
-rw-r--r-- | mod/bookmarks/views/default/river/object/bookmarks/create.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/bookmarks/views/default/river/object/bookmarks/create.php b/mod/bookmarks/views/default/river/object/bookmarks/create.php index d5124e4ca..2e27961c0 100644 --- a/mod/bookmarks/views/default/river/object/bookmarks/create.php +++ b/mod/bookmarks/views/default/river/object/bookmarks/create.php @@ -13,9 +13,10 @@ $string .= "<a href=\"" . $object->address . "\">" . $object->title . "</a>"; if(($is_group instanceof ElggGroup) && (get_context() != 'groups')){ $string .= " " . elgg_echo('bookmarks:ingroup') . " <a href=\"{$is_group->getURL()}\">" . $is_group->name . "</a>"; } -$string .= " <span class='entity_subtext'>" . friendly_time($object->time_created) . "</span>"; +$string .= " <span class='entity_subtext'>" . friendly_time($object->time_created); if (isloggedin()){ $string .= "<a class='river_comment_form_button link'>Comment</a>"; $string .= elgg_view('likes/forms/link', array('entity' => $object)); } +$string .= "</span>"; echo $string;
\ No newline at end of file |