diff options
author | Mario <mario@mariovavti.com> | 2021-08-22 17:55:38 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-08-22 17:55:38 +0000 |
commit | ab0da7db137bc40114aa34bef155b9920326004d (patch) | |
tree | 9beeb8bdfb0e1c32971674b9ad74ec63e79c7358 /Zotlabs/Module | |
parent | 052633d57084e718323235503653106165c6f930 (diff) | |
download | volse-hubzilla-ab0da7db137bc40114aa34bef155b9920326004d.tar.gz volse-hubzilla-ab0da7db137bc40114aa34bef155b9920326004d.tar.bz2 volse-hubzilla-ab0da7db137bc40114aa34bef155b9920326004d.zip |
use the slightly altered app_render() function instead of a separate function
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Bookmarks.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Module/Bookmarks.php b/Zotlabs/Module/Bookmarks.php index ea34754da..bd52acf98 100644 --- a/Zotlabs/Module/Bookmarks.php +++ b/Zotlabs/Module/Bookmarks.php @@ -74,7 +74,8 @@ class Bookmarks extends \Zotlabs\Web\Controller { if(! Apps::system_app_installed(local_channel(), 'Bookmarks')) { //Do not display any associated widgets at this point App::$pdl = ''; - return Apps::app_render_install('Bookmarks'); + $app = Apps::get_papp('Bookmarks'); + return Apps::app_render($app, 'module'); } require_once('include/menu.php'); |