mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
comment search bug fix
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12506 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
305b9820e9
commit
714e06e158
1 changed files with 4 additions and 2 deletions
|
|
@ -74,11 +74,13 @@ class integration_searchModel extends module
|
|||
if(is_array($module_srls_list))
|
||||
{
|
||||
if (count($module_srls_list) > 0) $module_srls = implode(',',$module_srls_list);
|
||||
else $module_srls = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
$module_srls = ($module_srls_list)?$module_srls_list:0;
|
||||
if($module_srls_list)
|
||||
{
|
||||
$module_srls = $module_srls_list;
|
||||
}
|
||||
}
|
||||
if($target == 'exclude') $args->exclude_module_srl = $module_srls;
|
||||
else $args->module_srl = $module_srls;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue