From 76ca2bca2493b7fb9a69e7de07f878d960a58fa9 Mon Sep 17 00:00:00 2001 From: Miriam Leung Date: Thu, 14 Nov 2024 14:54:45 -0800 Subject: [PATCH] Test const DEFAULT_PAGE_SIZE value change from 20 to 300 for qbank question list --- 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;