aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2019-07-30 13:59:12 +0200
committerMax Kostikov <max@kostikov.co>2019-07-30 13:59:12 +0200
commitd4a038c437a231ceba1ad79fe0c2f9a48e3afce1 (patch)
treedcb6ef8f65899d4dcc854e18ebffbb069483c240
parent59fed33797221003ef5ec730946f84588f3606a4 (diff)
downloadvolse-hubzilla-d4a038c437a231ceba1ad79fe0c2f9a48e3afce1.tar.gz
volse-hubzilla-d4a038c437a231ceba1ad79fe0c2f9a48e3afce1.tar.bz2
volse-hubzilla-d4a038c437a231ceba1ad79fe0c2f9a48e3afce1.zip
Update account.php
-rw-r--r--include/account.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/account.php b/include/account.php
index 5dd91f909..7546657fd 100644
--- a/include/account.php
+++ b/include/account.php
@@ -668,10 +668,12 @@ function downgrade_accounts() {
function service_class_allows($uid, $property, $usage = false) {
$limit = service_class_fetch($uid, $property);
- if($limit == false)
+ if($limit === false)
return true; // No service class set => everything is allowed
$limit = engr_units_to_bytes($limit);
+ if($limit == 0)
+ return true; // 0 means no limits
if($usage === false) {
// We use negative values for not allowed properties in a subscriber plan
return ((x($limit)) ? (bool) $limit : true);