aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-11-25 07:54:53 +0000
committerMario <mario@mariovavti.com>2021-11-25 07:54:53 +0000
commitca17fb01bc24f27e2229557e59977702f43619f4 (patch)
treef736c5f6042b751fc843911707ce85a52021c097 /Zotlabs
parenta6f65aa9c5a97d76b0c89d3251faf6df3372121c (diff)
downloadvolse-hubzilla-ca17fb01bc24f27e2229557e59977702f43619f4.tar.gz
volse-hubzilla-ca17fb01bc24f27e2229557e59977702f43619f4.tar.bz2
volse-hubzilla-ca17fb01bc24f27e2229557e59977702f43619f4.zip
profile cleanup and fixes
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Widget/Fullprofile.php2
-rw-r--r--Zotlabs/Widget/Profile.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Widget/Fullprofile.php b/Zotlabs/Widget/Fullprofile.php
index d7340ef40..e8ed13811 100644
--- a/Zotlabs/Widget/Fullprofile.php
+++ b/Zotlabs/Widget/Fullprofile.php
@@ -11,6 +11,6 @@ class Fullprofile {
$block = observer_prohibited();
- return profile_sidebar(\App::$profile, $block);
+ return profile_sidebar(\App::$profile, $block, true, true);
}
}
diff --git a/Zotlabs/Widget/Profile.php b/Zotlabs/Widget/Profile.php
index bffd910b6..8bd624c0f 100644
--- a/Zotlabs/Widget/Profile.php
+++ b/Zotlabs/Widget/Profile.php
@@ -7,7 +7,7 @@ class Profile {
function widget($args) {
$block = observer_prohibited();
- return profile_sidebar(\App::$profile, $block, true);
+ return profile_sidebar(\App::$profile, $block, true, false);
}
-} \ No newline at end of file
+}