diff options
author | RedMatrix <info@friendica.com> | 2015-01-12 09:01:51 +1100 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2015-01-12 09:01:51 +1100 |
commit | ff01505b369484e89187e796080bad68c8beb8a0 (patch) | |
tree | ba54942533c164e25e64fa61f1c43867270ffe03 /include/identity.php | |
parent | 10102ac2ac4d5b02012a9794e23656717ab05556 (diff) | |
parent | 1e6fd907950d7834007b7d06dc6b6bd82347fa5b (diff) | |
download | volse-hubzilla-ff01505b369484e89187e796080bad68c8beb8a0.tar.gz volse-hubzilla-ff01505b369484e89187e796080bad68c8beb8a0.tar.bz2 volse-hubzilla-ff01505b369484e89187e796080bad68c8beb8a0.zip |
Merge pull request #840 from cvogeley/master
Fix for #Issue763
Diffstat (limited to 'include/identity.php')
-rw-r--r-- | include/identity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/identity.php b/include/identity.php index 17238ea99..2f400520f 100644 --- a/include/identity.php +++ b/include/identity.php @@ -34,7 +34,7 @@ function identity_check_service_class($account_id) { $ret['total_identities'] = intval($r[0]['total']); - if(! service_class_allows($account_id,'total_identities',$r[0]['total'])) { + if(! account_service_class_allows($account_id,'total_identities',$r[0]['total'])) { $result['message'] .= upgrade_message(); return $result; } |