Fix SQL error missing column "pulls.applied"

This commit is contained in:
Richard Fath 2020-10-15 12:33:57 +02:00
parent 1089772eec
commit 63a0cbc931
1 changed files with 1 additions and 1 deletions

View File

@ -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