From e372be6df97940a34b7e0432b6a57e23bea1a314 Mon Sep 17 00:00:00 2001 From: Miriam Leung Date: Fri, 22 Nov 2024 14:01:10 -0800 Subject: [PATCH] Updates number of qbank questions displayed to 300 --- mod/quiz/classes/question/bank/custom_view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/quiz/classes/question/bank/custom_view.php b/mod/quiz/classes/question/bank/custom_view.php index 572ba8daa1b4b..2e5967deb1b01 100644 --- a/mod/quiz/classes/question/bank/custom_view.php +++ b/mod/quiz/classes/question/bank/custom_view.php @@ -45,7 +45,7 @@ */ class custom_view extends \core_question\local\bank\view { /** @var int number of questions per page to show in the add from question bank modal. */ - const DEFAULT_PAGE_SIZE = 20; + const DEFAULT_PAGE_SIZE = 300; /** @var bool $quizhasattempts whether the quiz this is used by has been attemptd. */ protected $quizhasattempts = false;