31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-06-07 07:50:48 +00:00

Fix query

This commit is contained in:
Michael Babker 2016-03-16 00:14:19 -04:00
parent 158ffc4efe
commit b72440d460

View File

@ -111,7 +111,7 @@ class PullsModel extends \JModelDatabase
// Select the required fields from the table.
$query->select('a.*');
$query->from('#__patchtester_pulls', 'a');
$query->from('#__patchtester_pulls AS a');
// Join the tests table to get applied patches
$query->select('t.id AS applied');