mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
Fix #1287 쪽지수신여부 설정시 캐싱을 하지 않던 문제 고침
This commit is contained in:
parent
9ca361ab45
commit
cf0bd0140b
1 changed files with 7 additions and 2 deletions
|
|
@ -35,10 +35,15 @@ class communicationController extends communication
|
|||
$args->allow_message = 'Y';
|
||||
}
|
||||
|
||||
$logged_info = Context::get('logged_info');
|
||||
$args->member_srl = $logged_info->member_srl;
|
||||
$args->member_srl = $this->user->member_srl;
|
||||
|
||||
$output = executeQuery('communication.updateAllowMessage', $args);
|
||||
if(!$output->toBool())
|
||||
{
|
||||
return $output;
|
||||
}
|
||||
|
||||
getController('member')->_clearMemberCache($args->member_srl);
|
||||
|
||||
$returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'mid', Context::get('mid'), 'act', 'dispCommunicationMessages', 'message_type', Context::get('message_type'));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue