diff options
Diffstat (limited to 'mod/profile')
-rw-r--r-- | mod/profile/views/default/profile/listing.php | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/mod/profile/views/default/profile/listing.php b/mod/profile/views/default/profile/listing.php index 6ec180051..09a944acf 100644 --- a/mod/profile/views/default/profile/listing.php +++ b/mod/profile/views/default/profile/listing.php @@ -11,6 +11,16 @@ *
* @uses $vars['entity'] The user entity
*/
+
+ //grab the users status message with metadata 'state' set to current if it exists
+ if($get_status = get_entities_from_metadata("state", "current", "object", "status", $vars['entity']->guid)){
+
+ foreach($get_status as $s) {
+ $info = elgg_view("status/friends_view", array('entity' => $s));
+ }
+
+ }
+
$icon = elgg_view(
"profile/icon", array(
@@ -19,22 +29,13 @@ )
);
- $info = "<p><b><a href=\"" . $vars['entity']->getUrl() . "\">" . $vars['entity']->name . "</a></b></p>";
+ $info .= "<p><b><a href=\"" . $vars['entity']->getUrl() . "\">" . $vars['entity']->name . "</a></b></p>";
$location = $vars['entity']->location;
if (!empty($location)) {
$info .= "<p>" . elgg_echo("profile:location") . ": " . elgg_view("output/tags",array('value' => $vars['entity']->location)) . "</p>";
}
- //grab the users status message with metadata 'state' set to current if one exists
- if($get_status = get_entities_from_metadata("state", "current", "object", "status", $vars['entity']->guid)){
-
- foreach($get_status as $s) {
- $info .= elgg_view("status/friends_view", array('entity' => $s));
- }
-
- }
-
echo elgg_view_listing($icon, $info);
?>
\ No newline at end of file |