aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2010-11-05 05:01:54 -0700
committerFriendika <info@friendika.com>2010-11-05 05:01:54 -0700
commit3cc662aa63722f3d142fcc924614140a70ecc323 (patch)
tree3e50e96d503c5b6af333700018624b55173d3de4 /mod
parent206eee02294cc75c06479f599c03e5a95ea5ee70 (diff)
downloadvolse-hubzilla-3cc662aa63722f3d142fcc924614140a70ecc323.tar.gz
volse-hubzilla-3cc662aa63722f3d142fcc924614140a70ecc323.tar.bz2
volse-hubzilla-3cc662aa63722f3d142fcc924614140a70ecc323.zip
friend/contact sidebar block
Diffstat (limited to 'mod')
-rw-r--r--mod/profile.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/profile.php b/mod/profile.php
index a3148eea3..99c775c4e 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -41,6 +41,10 @@ function profile_load(&$a, $username, $profile = 0) {
$a->page['title'] = $a->profile['name'];
$_SESSION['theme'] = $a->profile['theme'];
+ if(! (x($a->page,'aside')))
+ $a->page['aside'] = '';
+ $a->page['aside'] .= contact_block();
+
return;
}}