diff options
author | redmatrix <git@macgirvin.com> | 2016-04-18 20:38:38 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-04-18 20:38:38 -0700 |
commit | 2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289 (patch) | |
tree | 2376d950ba2bdc7753336a3e2b94865c95c238f2 /mod/service_limits.php | |
parent | 2a61817bad96526994c0499f1fc0a843a9cc9405 (diff) | |
download | volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.tar.gz volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.tar.bz2 volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.zip |
module updates
Diffstat (limited to 'mod/service_limits.php')
-rw-r--r-- | mod/service_limits.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/mod/service_limits.php b/mod/service_limits.php deleted file mode 100644 index 8ce410ab6..000000000 --- a/mod/service_limits.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php /** @file */ - - -function service_limits_content(&$a) { - - if(! local_channel()) { - notice( t('Permission denied.') . EOL); - return; - } - - $account = App::get_account(); - if($account['account_service_class']) { - $x = get_config('service_class',$account['account_service_class']); - if($x) { - $o = print_r($x,true); - return $o; - } - } - return t('No service class restrictions found.'); -} - - -
\ No newline at end of file |