mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
Fix input parmameters
This commit is contained in:
parent
2cb87af723
commit
b6698eb5e5
1 changed files with 1 additions and 1 deletions
|
|
@ -459,7 +459,7 @@ class VariableBase
|
|||
// treat parenthesis
|
||||
if (strlen($item) > 2 && substr($item, 0, 1) === '(' && substr($item, -1) === ')')
|
||||
{
|
||||
$parsed_keywords = $this->_parseSearchKeywords(substr($item, 1, -1));
|
||||
$parsed_keywords = $this->_parseSearchKeywords($column, substr($item, 1, -1));
|
||||
$conditions[] = "(". $parsed_keywords[0] . ")";
|
||||
$conditions[] = 'AND';
|
||||
$params = array_merge($params, $parsed_keywords[1]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue