From f39353a4a323d6a54e64c825c66788de81099b04 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Fri, 3 Nov 2017 15:44:53 -0400 Subject: [PATCH] add missing breaks --- web/includes/functions.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/includes/functions.php b/web/includes/functions.php index 4579f21af..8dcab3b42 100644 --- a/web/includes/functions.php +++ b/web/includes/functions.php @@ -1277,8 +1277,10 @@ function parseFilter( &$filter, $saveToSession=false, $querySep='&' ) { break; case 'IS' : $filter['sql'] .= " IS $value"; + break; case 'IS NOT' : $filter['sql'] .= " IS NOT $value"; + break; } $filter['query'] .= $querySep.urlencode("filter[Query][terms][$i][op]").'='.urlencode($terms[$i]['op']);