From 9b0714d20ddc5cd92b1e7fcddcbd8f2e122c116a Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Fri, 25 Feb 2022 14:14:02 -0500 Subject: [PATCH] Fix use of value instead of val in filter term --- web/includes/Filter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/includes/Filter.php b/web/includes/Filter.php index 2b599fe36..2d00da12f 100644 --- a/web/includes/Filter.php +++ b/web/includes/Filter.php @@ -129,7 +129,7 @@ class Filter extends ZM_Object { foreach ( $this->Terms as $term ) { if ( $term->attr == 'StorageId' ) { # TODO handle other operators like != - $storage_ids[] = $term->value; + $storage_ids[] = $term->val; } } if ( count($storage_ids) ) {