We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 922fdc6 commit c37fa53Copy full SHA for c37fa53
models/criterion/BaseBuilder.cfc
@@ -404,11 +404,7 @@ component accessors="true" {
404
405
// iterate and add dynamically if the incoming argument exists, man, so much easier if we had closures.
406
for ( var pType in arguments ) {
407
- if (
408
- structKeyExists( arguments, pType ) && NOT listFindNoCase( excludes, pType ) && !isNull(
409
- projectionList
410
- )
411
- ) {
+ if ( structKeyExists( arguments, pType ) AND NOT listFindNoCase( excludes, pType ) ) {
412
addProjection(
413
arguments[ pType ],
414
lCase( pType ),
0 commit comments