line 17 of views_query.inc has

if ($args[$i] != NULL && $args[$i] != '' && $args[$i] != '$arg') {

it should be

if ($args[$i] !== NULL && $args[$i] != '' && $args[$i] != '$arg') {

CommentFileSizeAuthor
views_query.patch731 byteskilles@www.drop.org

Comments

esmerel’s picture

Status: Needs review » Closed (won't fix)

At this time, only security fixes will be made to the 5.x version of Views.