aboutsummaryrefslogtreecommitdiffstats
path: root/include/plugin.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-09-08 16:33:30 -0700
committerfriendica <info@friendica.com>2013-09-08 16:33:30 -0700
commitf8afdb3cba25dc7dc70ac3d7c6e48e6595bd97d5 (patch)
tree54d231b76eafef25a92dc6be8bfb0ad0215d4b95 /include/plugin.php
parentb88f60b51ff9416c35b5af9ce849026666c47cc8 (diff)
parentb4a2361efc7bc4b49f5195a2c14573a41c55f300 (diff)
downloadvolse-hubzilla-f8afdb3cba25dc7dc70ac3d7c6e48e6595bd97d5.tar.gz
volse-hubzilla-f8afdb3cba25dc7dc70ac3d7c6e48e6595bd97d5.tar.bz2
volse-hubzilla-f8afdb3cba25dc7dc70ac3d7c6e48e6595bd97d5.zip
Merge pull request #118 from cvogeley/master
Service class checks
Diffstat (limited to 'include/plugin.php')
-rwxr-xr-xinclude/plugin.php19
1 files changed, 12 insertions, 7 deletions
diff --git a/include/plugin.php b/include/plugin.php
index 01ee99786..ea88a61df 100755
--- a/include/plugin.php
+++ b/include/plugin.php
@@ -374,12 +374,14 @@ function get_theme_screenshot($theme) {
function service_class_allows($uid,$property,$usage = false) {
-
+ $a = get_app();
if($uid == local_user()) {
- $service_class = $a->user['service_class'];
+ $service_class = $a->account['account_service_class'];
}
else {
- $r = q("select service_class from user where uid = %d limit 1",
+ $r = q("select account_service_class as service_class
+ from channel c, account a
+ where c.channel_account_id=a.account_id and c.channel_id= %d limit 1",
intval($uid)
);
if($r !== false and count($r)) {
@@ -404,13 +406,15 @@ function service_class_allows($uid,$property,$usage = false) {
function service_class_fetch($uid,$property) {
-
+ $a = get_app();
if($uid == local_user()) {
- $service_class = $a->user['service_class'];
+ $service_class = $a->account['account_service_class'];
}
else {
- $r = q("select service_class from user where uid = %d limit 1",
- intval($uid)
+ $r = q("select account_service_class as service_class
+ from channel c, account a
+ where c.channel_account_id=a.account_id and c.channel_id= %d limit 1",
+ intval($uid)
);
if($r !== false and count($r)) {
$service_class = $r[0]['service_class'];
@@ -420,6 +424,7 @@ function service_class_fetch($uid,$property) {
return false; // everything is allowed
$arr = get_config('service_class',$service_class);
+
if(! is_array($arr) || (! count($arr)))
return false;