From b2792481fab610fb33c405af4ed57511abcea9f6 Mon Sep 17 00:00:00 2001 From: Ruben Rodriguez <33643304+JamesTheSergal@users.noreply.github.com> Date: Wed, 6 Jul 2022 08:57:10 -0400 Subject: [PATCH] fix no handler for 'bulk_download' Shimmie out of the box has bulk downloads enabled for the 'user' and 'base', but perform bulk actions isn't enabled, so it goes to a handler not found page. This fixes that. --- core/userclass.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/userclass.php b/core/userclass.php index df918c99..827448b2 100644 --- a/core/userclass.php +++ b/core/userclass.php @@ -89,6 +89,7 @@ new UserClass("user", "base", [ Permissions::SEND_PM => true, Permissions::READ_PM => true, Permissions::SET_PRIVATE_IMAGE => true, + Permissions::PERFORM_BULK_ACTIONS => true, Permissions::BULK_DOWNLOAD => true, Permissions::CHANGE_USER_SETTING => true ]);