diff options
author | Mario <mario@mariovavti.com> | 2020-05-07 08:06:38 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-05-07 08:06:38 +0000 |
commit | 4ebf6cda5db6cd2dea38a7e9825ab676e53dbb73 (patch) | |
tree | 7c5e5eedbc7151243071ff9ac8d564d7a9260060 /Zotlabs/Module | |
parent | a04b6d178bd4a5facc827c6ac3b9a51b1a0c88d9 (diff) | |
download | volse-hubzilla-4ebf6cda5db6cd2dea38a7e9825ab676e53dbb73.tar.gz volse-hubzilla-4ebf6cda5db6cd2dea38a7e9825ab676e53dbb73.tar.bz2 volse-hubzilla-4ebf6cda5db6cd2dea38a7e9825ab676e53dbb73.zip |
remove more traces of the premium channel app
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Connect.php | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Zotlabs/Module/Connect.php b/Zotlabs/Module/Connect.php index 62d3af840..31da42035 100644 --- a/Zotlabs/Module/Connect.php +++ b/Zotlabs/Module/Connect.php @@ -28,10 +28,6 @@ class Connect extends Controller { $channel_id = App::$data['channel']['channel_id']; - if(! Apps::system_app_installed($channel_id, 'Premium Channel')) { - return; - } - profile_load($which,''); } @@ -42,10 +38,6 @@ class Connect extends Controller { $channel_id = App::$data['channel']['channel_id']; - if(! Apps::system_app_installed($channel_id, 'Premium Channel')) { - return; - } - $edit = ((local_channel() && (local_channel() == $channel_id)) ? true : false); if($edit) { @@ -97,15 +89,6 @@ class Connect extends Controller { $channel_id = App::$data['channel']['channel_id']; - if(! Apps::system_app_installed($channel_id, 'Premium Channel')) { - //Do not display any associated widgets at this point - App::$pdl = ''; - - $o = '<b>' . t('Premium Channel App') . ' (' . t('Not Installed') . '):</b><br>'; - $o .= t('Allows you to set restrictions and terms on those that connect with your channel'); - return $o; - } - $edit = ((local_channel() && (local_channel() == $channel_id)) ? true : false); $text = get_pconfig($channel_id,'system','selltext'); |