Fix use of value instead of val in filter term

This commit is contained in:
Isaac Connor 2022-02-25 14:14:02 -05:00
parent 813fd36b0a
commit 9b0714d20d
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ class Filter extends ZM_Object {
foreach ( $this->Terms as $term ) { foreach ( $this->Terms as $term ) {
if ( $term->attr == 'StorageId' ) { if ( $term->attr == 'StorageId' ) {
# TODO handle other operators like != # TODO handle other operators like !=
$storage_ids[] = $term->value; $storage_ids[] = $term->val;
} }
} }
if ( count($storage_ids) ) { if ( count($storage_ids) ) {