mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 04:24:14 +09:00
$params에 기존 값이 유지되도록 수정
This commit is contained in:
parent
1b80db4652
commit
a247ec8335
1 changed files with 3 additions and 1 deletions
|
|
@ -237,7 +237,9 @@ class VariableBase
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'search':
|
case 'search':
|
||||||
list($where, $params[]) = $this->_parseSearchKeywords($column, $value);
|
$parsed_keywords = $this->_parseSearchKeywords($column, $value);
|
||||||
|
$where = $parsed_keywords[0];
|
||||||
|
$params = array_merge($params, $parsed_keywords[1]);
|
||||||
break;
|
break;
|
||||||
case 'plus':
|
case 'plus':
|
||||||
$where = sprintf('%s = %s + %s', $column, $column, $is_expression ? $value : '?');
|
$where = sprintf('%s = %s + %s', $column, $column, $is_expression ? $value : '?');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue