fix(basic.gblib): ALLOW ROLE return people.
This commit is contained in:
parent
7893cabf85
commit
81ec80b516
1 changed files with 5 additions and 11 deletions
|
@ -1254,21 +1254,15 @@ export class SystemKeywords {
|
||||||
filterAcceptCount++;
|
filterAcceptCount++;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (v1.indexOf(v2) > -1) {
|
if (v2.indexOf(v1) > -1) {
|
||||||
filterAcceptCount++;
|
filterAcceptCount++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case '<>':
|
case '<>':
|
||||||
if (wholeWord) {
|
|
||||||
if (v1 !== v2) {
|
if (v1 !== v2) {
|
||||||
filterAcceptCount++;
|
filterAcceptCount++;
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
if (v1.indexOf(v2) === -1) {
|
|
||||||
filterAcceptCount++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case 'not in':
|
case 'not in':
|
||||||
if (wholeWord) {
|
if (wholeWord) {
|
||||||
|
@ -1276,7 +1270,7 @@ export class SystemKeywords {
|
||||||
filterAcceptCount++;
|
filterAcceptCount++;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (v1.indexOf(v2) === -1) {
|
if (v2.indexOf(v1) === -1) {
|
||||||
filterAcceptCount++;
|
filterAcceptCount++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1287,7 +1281,7 @@ export class SystemKeywords {
|
||||||
filterAcceptCount++;
|
filterAcceptCount++;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (v1.indexOf(v2) > -1) {
|
if (v2.indexOf(v1) > -1) {
|
||||||
filterAcceptCount++;
|
filterAcceptCount++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue