mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Trim quotes
This commit is contained in:
parent
2bd1b37717
commit
1afcaea4c6
@ -96,7 +96,7 @@ class QueryParser implements QueryParserInterface
|
|||||||
case '-':
|
case '-':
|
||||||
if ('' === $tokenUnderConstruction) {
|
if ('' === $tokenUnderConstruction) {
|
||||||
// A minus sign at the beginning of a token indicates prohibition
|
// A minus sign at the beginning of a token indicates prohibition
|
||||||
Log::debug('Indicate prohibition');
|
// Log::debug('Indicate prohibition');
|
||||||
$prohibited = true;
|
$prohibited = true;
|
||||||
}
|
}
|
||||||
if ('' !== $tokenUnderConstruction) {
|
if ('' !== $tokenUnderConstruction) {
|
||||||
@ -196,6 +196,8 @@ class QueryParser implements QueryParserInterface
|
|||||||
{
|
{
|
||||||
if ('' !== $fieldName) {
|
if ('' !== $fieldName) {
|
||||||
Log::debug(sprintf('Create FieldNode %s:%s (%s)', $fieldName, $token, var_export($prohibited, true)));
|
Log::debug(sprintf('Create FieldNode %s:%s (%s)', $fieldName, $token, var_export($prohibited, true)));
|
||||||
|
$token = ltrim($token, ':"');
|
||||||
|
$token = rtrim($token, '"');
|
||||||
|
|
||||||
return new FieldNode(trim($fieldName), trim($token), $prohibited);
|
return new FieldNode(trim($fieldName), trim($token), $prohibited);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user