mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2025-01-03 07:12:36 +00:00
Merge pull request #303 from richard67/master-fix-applied-filter-sql-query
Fix SQL error missing column "pulls.applied" breaking the "Applied" filter
This commit is contained in:
commit
e231f1bcf8
@ -273,7 +273,7 @@ class PullsModel extends AbstractModel
|
||||
// Not applied patches have a NULL value, so build our value part of the query based on this
|
||||
$value = $applied === 'no' ? ' IS NULL' : ' = 1';
|
||||
|
||||
$query->where($db->quoteName('pulls.applied') . $value);
|
||||
$query->where($db->quoteName('applied') . $value);
|
||||
}
|
||||
|
||||
// Filter for branch
|
||||
|
Loading…
Reference in New Issue
Block a user