diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-20 13:40:45 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-20 13:40:45 +0000 |
commit | 4678a627bd707b04c75e6978c7eb7223bfd5ea2a (patch) | |
tree | 1ec28bf089cdc8ade7870e893de303303d7983d8 | |
parent | b0c7a59ef6e3b0da0f03af5fc8fb8debf3d1e7a6 (diff) | |
download | elgg-4678a627bd707b04c75e6978c7eb7223bfd5ea2a.tar.gz elgg-4678a627bd707b04c75e6978c7eb7223bfd5ea2a.tar.bz2 |
status moved on member listings
git-svn-id: https://code.elgg.org/elgg/trunk@2856 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/profile/views/default/profile/listing.php | 7 |
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>";
|