fix #979 notin default 값에 다중 값을 사용할 수 없는 문제 고침

This commit is contained in:
bnu 2014-10-05 15:39:56 +09:00
parent 814fdb4e71
commit a30ee4d573

View file

@ -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;