Merge branch 'rhymix:develop' into develop

This commit is contained in:
Lastorder 2024-06-20 16:16:03 +09:00 committed by GitHub
commit af2c3a2fd6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)
{