mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
fix #979 notin default 값에 다중 값을 사용할 수 없는 문제 고침
This commit is contained in:
parent
814fdb4e71
commit
a30ee4d573
1 changed files with 1 additions and 1 deletions
|
|
@ -88,7 +88,7 @@ class ConditionTag
|
|||
{
|
||||
if(isset($condition->attrs->default))
|
||||
{
|
||||
$operationList = array('in' => 1, 'between' => 1, 'not in' => 1);
|
||||
$operationList = array('in' => 1, 'between' => 1, 'notin' => 1, 'not_in' => 1);
|
||||
if(isset($operationList[$this->operation]))
|
||||
{
|
||||
$default_value = $condition->attrs->default;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue