From 57dcab75e9c9261c38174273aafbf096dc355215 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Thu, 22 Oct 2020 02:02:00 +0900 Subject: [PATCH] Fix missing document_srl in password input form --- modules/board/board.view.php | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/board/board.view.php b/modules/board/board.view.php index 5c57f3201..526cf6063 100644 --- a/modules/board/board.view.php +++ b/modules/board/board.view.php @@ -1153,6 +1153,7 @@ class boardView extends board // if the comment is not granted, then back to the password input form if(!$oComment->isGranted()) { + Context::set('document_srl', $oComment->get('document_srl')); return $this->setTemplateFile('input_password_form'); }