mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
fix #1890 쪽지 기능에서 변조된 데이터가 사용될 수 있는 문제 수정
This commit is contained in:
parent
6d964a5b0c
commit
4925364239
1 changed files with 7 additions and 4 deletions
|
|
@ -167,10 +167,13 @@ class communicationModel extends communication
|
|||
{
|
||||
foreach($member_info as $key => $val)
|
||||
{
|
||||
if($key != 'regdate')
|
||||
{
|
||||
$message->{$key} = $val;
|
||||
}
|
||||
if($key === 'title') continue;
|
||||
if($key === 'content') continue;
|
||||
if($key === 'sender_srl') continue;
|
||||
if($key === 'password') continue;
|
||||
if($key === 'regdate') continue;
|
||||
|
||||
$message->{$key} = $val;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue