diff options
author | redmatrix <git@macgirvin.com> | 2016-05-22 16:54:30 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-22 16:54:30 -0700 |
commit | de006771c7fe92a889d759c2c75c1473c420ad47 (patch) | |
tree | 157391db6d2d48980719fa07c3d317fcb85ef70c /Zotlabs/Module/Admin.php | |
parent | 2fdd1485985e2f341b413e978cf85edb858fce41 (diff) | |
download | volse-hubzilla-de006771c7fe92a889d759c2c75c1473c420ad47.tar.gz volse-hubzilla-de006771c7fe92a889d759c2c75c1473c420ad47.tar.bz2 volse-hubzilla-de006771c7fe92a889d759c2c75c1473c420ad47.zip |
renamed include files identity.php (channel.php) and Contact.php (connections.php)
Diffstat (limited to 'Zotlabs/Module/Admin.php')
-rw-r--r-- | Zotlabs/Module/Admin.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Zotlabs/Module/Admin.php b/Zotlabs/Module/Admin.php index cd6e45e9f..172b109c8 100644 --- a/Zotlabs/Module/Admin.php +++ b/Zotlabs/Module/Admin.php @@ -902,7 +902,6 @@ class Admin extends \Zotlabs\Web\Controller { } // account delete button was submitted if (x($_POST, 'page_users_delete')) { - require_once('include/Contact.php'); foreach ($users as $uid){ account_remove($uid, true, false); } @@ -951,7 +950,6 @@ class Admin extends \Zotlabs\Web\Controller { switch (argv(2)){ case 'delete': // delete user - require_once('include/Contact.php'); account_remove($uid,true,false); notice( sprintf(t("Account '%s' deleted"), $account[0]['account_email']) . EOL); @@ -1096,7 +1094,6 @@ class Admin extends \Zotlabs\Web\Controller { notice( sprintf( tt("%s channel code allowed/disallowed", "%s channels code allowed/disallowed", count($channels)), count($channels)) ); } if (x($_POST,'page_channels_delete')){ - require_once("include/Contact.php"); foreach($channels as $uid){ channel_remove($uid,true); } @@ -1128,7 +1125,6 @@ class Admin extends \Zotlabs\Web\Controller { case "delete":{ check_form_security_token_redirectOnErr('/admin/channels', 'admin_channels', 't'); // delete channel - require_once("include/Contact.php"); channel_remove($uid,true); notice( sprintf(t("Channel '%s' deleted"), $channel[0]['channel_name']) . EOL); |