diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-01 17:04:47 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-01 17:04:47 -0700 |
commit | 47b29594867deb96f6b93d8a5ace8d4d4e569630 (patch) | |
tree | 1e7dd09cbb7a6c1e18c9a3ae81928382bccf961c /doc/admin/administrator_guide.md | |
parent | c61853ff0b06c1e41de0e0dfff6b660b693d5e3b (diff) | |
parent | f70d27b79325fe661bf1492a61c295c469e494ef (diff) | |
download | volse-hubzilla-47b29594867deb96f6b93d8a5ace8d4d4e569630.tar.gz volse-hubzilla-47b29594867deb96f6b93d8a5ace8d4d4e569630.tar.bz2 volse-hubzilla-47b29594867deb96f6b93d8a5ace8d4d4e569630.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'doc/admin/administrator_guide.md')
-rw-r--r-- | doc/admin/administrator_guide.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/admin/administrator_guide.md b/doc/admin/administrator_guide.md index e3b6190cb..2fa52c7c6 100644 --- a/doc/admin/administrator_guide.md +++ b/doc/admin/administrator_guide.md @@ -246,7 +246,7 @@ a _standard_ and _premium_ class using the following lines: App::$config['system']['default_service_class']='standard'; // this is the default service class that is attached to every new account - // configuration for parent service class + // configuration for standard service class App::$config['service_class']['standard'] = array('photo_upload_limit'=>2097152, // total photo storage limit per channel (here 2MB) 'total_identities' =>1, // number of channels an account can create @@ -256,7 +256,7 @@ a _standard_ and _premium_ class using the following lines: 'attach_upload_limit' =>2097152, // total attachment storage limit per channel (here 2MB) 'chatters_inroom' =>20); - // configuration for teacher service class + // configuration for premium service class App::$config['service_class']['premium'] = array('photo_upload_limit'=>20000000000, // total photo storage limit per channel (here 20GB) 'total_identities' =>20, // number of channels an account can create |