Merge pull request #48 from towards-a-new-leftypol/mod_perms

Fix issue 47 - allow users with MOD privileges to edit posts
This commit is contained in:
towards-a-new-leftypol 2020-12-27 17:56:44 -05:00 committed by GitHub
commit 804046d1ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -83,7 +83,10 @@ $config['max_pages'] = 36;
$config['threads_preview'] = 5; $config['threads_preview'] = 5;
$config['root'] = '/'; $config['root'] = '/';
$config['secure_trip_salt'] = 'ODQ2NDM0ODlmMmRhNzk2M2EyNjJlOW'; $config['secure_trip_salt'] = 'ODQ2NDM0ODlmMmRhNzk2M2EyNjJlOW';
//Permissions
$config['mod']['move'] = MOD; $config['mod']['move'] = MOD;
$config['mod']['editpost'] = MOD;
// Max attachments per post // Max attachments per post
$config['max_images'] = 5; $config['max_images'] = 5;