diff --git a/Zotlabs/Widget/Shortprofile.php b/Zotlabs/Widget/Shortprofile.php index 9c2a46e75..c2c97beb8 100644 --- a/Zotlabs/Widget/Shortprofile.php +++ b/Zotlabs/Widget/Shortprofile.php @@ -2,6 +2,8 @@ namespace Zotlabs\Widget; +use Zotlabs\Lib\Libprofile; + class Shortprofile { function widget($arr) { @@ -11,7 +13,7 @@ class Shortprofile { $block = observer_prohibited(); - return profile_sidebar(\App::$profile, $block, true, true); + return Libprofile::widget(\App::$profile, $block, true, true); } }