CMS/프레임워크Rhymix 2.1
개발 언어PHP 8.4
public function procBoardInsertDocument()
{
..(중략)....
// return the results
$this->add('mid', Context::get('mid'));
$this->add('document_srl', $output->get('document_srl'));
$this->add('category_srl', $output->get('category_srl'));
$this->setRedirectUrl(getNotEncodedFullUrl('', 'mid', Context::get('mid'), 'document_srl', $output->get('document_srl')));
// alert a message
$this->setMessage($msg_code);
}
board.controller.php 인데요
분명 $this->setMessage($msg_code)는 되어있고
디버그로 출력해보면 $msg_code에도 값이 잘 들어가 있는데
작성 및 수정후에는 뷰에서 alert 값을 못받아 옵니다.
{$XE_VALIDATOR_MESSAGE}
{$message}
2개 다 못받아 옵니다.
_view.document.html에 따로 호출시켜봐도 못받아오네요.
어떻게 받아오게 할 수 있을까요..
코어의 버그일까요??
아님 제가 놓친게 있을까요..