aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 22:39:41 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 22:39:41 +0000
commitca9ed0b16163dcf77154c0adc702e9f4c63df13c (patch)
tree65fa1b39dbecb087740e328e3454a0971cd36cb9
parente903a56b44ad45da5bd908ffbf895a390b0bb77e (diff)
downloadelgg-ca9ed0b16163dcf77154c0adc702e9f4c63df13c.tar.gz
elgg-ca9ed0b16163dcf77154c0adc702e9f4c63df13c.tar.bz2
added the status view into details on profile page
git-svn-id: http://code.elgg.org/elgg/trunk@8181 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r--mod/profile/views/default/profile/details.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/profile/views/default/profile/details.php b/mod/profile/views/default/profile/details.php
index 649a5b2cc..04d95001d 100644
--- a/mod/profile/views/default/profile/details.php
+++ b/mod/profile/views/default/profile/details.php
@@ -11,6 +11,8 @@ $profile_fields = elgg_get_config('profile_fields');
echo '<div id="profile-details" class="elgg-body pll">';
echo "<h2>{$user->name}</h2>";
+echo elgg_view("profile/status", array("entity" => $user));
+
$even_odd = null;
if (is_array($profile_fields) && sizeof($profile_fields) > 0) {
foreach ($profile_fields as $shortname => $valtype) {