diff options
author | Mario Vavti <mario@mariovavti.com> | 2022-10-13 13:15:08 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2022-10-13 13:15:08 +0200 |
commit | 2a95500b6538f130df9434f1fb253247872679e8 (patch) | |
tree | e14dc2cf8b35fb353c92d6adbad9fe7c8f66a810 /Zotlabs/Widget | |
parent | 2ddad66ce74dd90249fa083fcf4616f8222de1b5 (diff) | |
download | volse-hubzilla-2a95500b6538f130df9434f1fb253247872679e8.tar.gz volse-hubzilla-2a95500b6538f130df9434f1fb253247872679e8.tar.bz2 volse-hubzilla-2a95500b6538f130df9434f1fb253247872679e8.zip |
fix more php warnings
Diffstat (limited to 'Zotlabs/Widget')
-rw-r--r-- | Zotlabs/Widget/Fullprofile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Widget/Fullprofile.php b/Zotlabs/Widget/Fullprofile.php index edff88e31..e40188c9e 100644 --- a/Zotlabs/Widget/Fullprofile.php +++ b/Zotlabs/Widget/Fullprofile.php @@ -12,7 +12,7 @@ class Fullprofile { function widget($arr) { - if(! \App::$profile['profile_uid']) + if(!(isset(\App::$profile['profile_uid']) && \App::$profile['profile_uid'])) return; $block = observer_prohibited(); |