We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
즉, 수정할 때마다 회원정보가 노출되었다가 숨겨졌다가를 번갈아 반복합니다.
board.controller.php에서 이번에 수정된
$obj->member_srl = $oDocument->get('member_srl') * -1;
이 코드를 아래와 같이 변경합니다.
$obj->member_srl = abs($oDocument->get('member_srl')) * -1;
The text was updated successfully, but these errors were encountered:
👍
Sorry, something went wrong.
fix #1874 게시판에서 익명 게시물 수정 시 회원 정보가 노출되는 문제 고침
c5aee07
No branches or pull requests
재현 방법
즉, 수정할 때마다 회원정보가 노출되었다가 숨겨졌다가를 번갈아 반복합니다.
해결 방법
board.controller.php에서 이번에 수정된
이 코드를 아래와 같이 변경합니다.
The text was updated successfully, but these errors were encountered: