mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
멘션 접미사 설정이 되지않았던 문제수정
This commit is contained in:
parent
0b05de6f80
commit
f0fc9dce29
1 changed files with 5 additions and 1 deletions
|
|
@ -41,11 +41,15 @@ class ncenterliteAdminController extends ncenterlite
|
|||
{
|
||||
$config->use = array();
|
||||
}
|
||||
}
|
||||
|
||||
if ($obj->disp_act == 'dispNcenterliteAdminAdvancedconfig')
|
||||
{
|
||||
if (!$config->mention_suffixes)
|
||||
{
|
||||
$config->mention_suffixes = array();
|
||||
}
|
||||
if (!is_array($config->mention_suffixes))
|
||||
else if (!is_array($config->mention_suffixes))
|
||||
{
|
||||
$config->mention_suffixes = array_map('trim', explode(',', $config->mention_suffixes));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue