mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
#1517 보완: 괄호 안의 첫 글자와 마지막 글자가 잘리는 문제 수정
This commit is contained in:
parent
0e52b363cf
commit
a0b324993c
1 changed files with 2 additions and 2 deletions
|
|
@ -460,9 +460,9 @@ class VariableBase
|
|||
if (substr($item, 0, 1) === '(' && substr($item, -1) === ')')
|
||||
{
|
||||
$item = trim(substr($item, 1, -1));
|
||||
if ( $item !== "" )
|
||||
if ($item !== '')
|
||||
{
|
||||
$parsed_keywords = $this->_parseSearchKeywords($column, substr($item, 1, -1));
|
||||
$parsed_keywords = $this->_parseSearchKeywords($column, $item);
|
||||
$conditions[] = $parsed_keywords[0];
|
||||
$conditions[] = 'AND';
|
||||
$params = array_merge($params, $parsed_keywords[1]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue