mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
Fix deanonymization when updating document
This commit is contained in:
parent
ebaa4ec110
commit
3dc88d1ad7
1 changed files with 1 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ class boardController extends board
|
|||
}
|
||||
|
||||
if($this->module_info->use_anonymous == 'Y') {
|
||||
$obj->member_srl = $oDocument->get('member_srl') * -1;
|
||||
$obj->member_srl = abs($oDocument->get('member_srl')) * -1;
|
||||
$oDocument->add('member_srl', $obj->member_srl);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue