Skip to content

Commit

Permalink
Merge pull request #635 from dasgarner/develop
Browse files Browse the repository at this point in the history
Fix for Player Version edit
  • Loading branch information
dasgarner authored Jul 30, 2019
2 parents b70ab44 + cb36460 commit 733d7e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Factory/PlayerVersionFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public function query($sortOrder = null, $filterBy = [])
$params['playerCode'] = $this->getSanitizer()->getInt('playerCode', $filterBy);
}

if ($this->getSanitizer()->getString('playerShowVersion') !== null) {
if ($this->getSanitizer()->getString('playerShowVersion', $filterBy) !== null) {
$terms = explode(',', $this->getSanitizer()->getString('playerShowVersion', $filterBy));
$this->nameFilter('player_software', 'playerShowVersion', $terms, $body, $params);
}
Expand Down

0 comments on commit 733d7e7

Please sign in to comment.