mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-12-22 10:58:58 +00:00
Fixed NPM filter
Signed-off-by: Roland Dalmulder <contact@rolandd.com>
This commit is contained in:
parent
bafb673cbf
commit
d1419dc893
@ -256,11 +256,10 @@ class PullsModel extends ListModel
|
|||||||
$query->where($db->quoteName('pulls.is_rtc') . ' = ' . $value);
|
$query->where($db->quoteName('pulls.is_rtc') . ' = ' . $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
$npm = $this->getState()->get('filter.npm');
|
$npm = $this->getState()->get('filter.npm', '');
|
||||||
if (!empty($npm)) {
|
|
||||||
// Not applied patches have a NULL value, so build our value part of the query based on this
|
if (strlen($npm) === 1) {
|
||||||
$value = $npm === 'no' ? '0' : '1';
|
$query->where($db->quoteName('pulls.is_npm') . ' = ' . (int) $npm);
|
||||||
$query->where($db->quoteName('pulls.is_npm') . ' = ' . $value);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$draft = $this->getState()->get('filter.draft');
|
$draft = $this->getState()->get('filter.draft');
|
||||||
|
Loading…
Reference in New Issue
Block a user