From fbbcf98b92a4e5fceba37f60c2a1d223130019b2 Mon Sep 17 00:00:00 2001 From: butterbutt Date: Fri, 2 Oct 2020 04:18:33 -0500 Subject: [PATCH] only allow admin to mark images as private --- core/userclass.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/userclass.php b/core/userclass.php index c33ac7bd..fa5d5210 100644 --- a/core/userclass.php +++ b/core/userclass.php @@ -99,7 +99,7 @@ new UserClass("user", "base", [ Permissions::EDIT_FAVOURITES => true, Permissions::SEND_PM => true, Permissions::READ_PM => true, - Permissions::SET_PRIVATE_IMAGE => true, + Permissions::SET_PRIVATE_IMAGE => false, Permissions::BULK_DOWNLOAD => true, ]);