mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
Merge branch 'rhymix:develop' into develop
This commit is contained in:
commit
af2c3a2fd6
1 changed files with 8 additions and 1 deletions
|
|
@ -281,7 +281,14 @@ class NcenterliteModel extends Ncenterlite
|
|||
$v->text = $this->getNotificationText($v);
|
||||
$v->ago = $this->getAgo($v->regdate);
|
||||
$v->url = getUrl('','act','procNcenterliteRedirect', 'notify', $v->notify);
|
||||
$v->data = isset($v->data) ? unserialize($v->data) : [];
|
||||
if (isset($v->data))
|
||||
{
|
||||
$v->data = is_string($v->data) ? unserialize($v->data) : $v->data;
|
||||
}
|
||||
else
|
||||
{
|
||||
$v->data = [];
|
||||
}
|
||||
|
||||
if($v->target_member_srl < 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue