mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-11 13:02:15 +09:00
oPush set할 때, 자료형 맞게 가공
This commit is contained in:
parent
d7a66c6c01
commit
6c852e5f64
1 changed files with 4 additions and 4 deletions
|
|
@ -1512,10 +1512,10 @@ class ncenterliteController extends ncenterlite
|
||||||
|
|
||||||
$oPush = new \Rhymix\Framework\Push();
|
$oPush = new \Rhymix\Framework\Push();
|
||||||
$oPush->setSubject($content);
|
$oPush->setSubject($content);
|
||||||
$oPush->setContent($args->extra_content);
|
$oPush->setContent(escape($args->extra_content));
|
||||||
$oPush->setData($args->extra_data);
|
$oPush->setData($args->extra_data ?: []);
|
||||||
$oPush->setURL($target_url);
|
$oPush->setURL(escape($target_url));
|
||||||
$oPush->addTo($args->member_srl);
|
$oPush->addTo(intval($args->member_srl));
|
||||||
$oPush->send();
|
$oPush->send();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue