mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2025-01-03 07:12:36 +00:00
Fix SQL error missing column "pulls.applied"
This commit is contained in:
parent
1089772eec
commit
63a0cbc931
@ -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