aboutsummaryrefslogtreecommitdiff
path: root/mod/profile
diff options
context:
space:
mode:
Diffstat (limited to 'mod/profile')
-rw-r--r--mod/profile/views/default/profile/listing.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/mod/profile/views/default/profile/listing.php b/mod/profile/views/default/profile/listing.php
index 203aee0d5..bf53f4944 100644
--- a/mod/profile/views/default/profile/listing.php
+++ b/mod/profile/views/default/profile/listing.php
@@ -11,9 +11,6 @@
*
* @uses $vars['entity'] The user entity
*/
- //create a view that a status plugin could extend - in the default case, this is the wire
- $info = elgg_view("profile/status", array("entity" => $vars['entity']));
-
$icon = elgg_view(
"profile/icon", array(
@@ -33,7 +30,9 @@
if (!$banned) {
$info .= "<p><b><a href=\"" . $vars['entity']->getUrl() . "\" rel=\"$rel\">" . $vars['entity']->name . "</a></b></p>";
-
+ //create a view that a status plugin could extend - in the default case, this is the wire
+ $info .= elgg_view("profile/status", array("entity" => $vars['entity']));
+
$location = $vars['entity']->location;
if (!empty($location)) {
$info .= "<p class=\"owner_timestamp\">" . elgg_echo("profile:location") . ": " . elgg_view("output/tags",array('value' => $vars['entity']->location)) . "</p>";