Skip to content

Commit

Permalink
Merge pull request joomla#149 from Buddhima/fix_transition-field_orde…
Browse files Browse the repository at this point in the history
…ring

Fixing transition field ambiguity in ordering
  • Loading branch information
Buddhima authored Oct 8, 2017
2 parents 62476b5 + b091911 commit 6dc75ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ protected function getOptions()
->where($db->qn('t.to_state_id') . ' = ' . $db->qn('s.id'))
->where($db->qn('t.published') . '=1')
->where($db->qn('s.published') . '=1')
->order($db->qn('ordering'));
->order($db->qn('t.ordering'));

$items = $db->setQuery($query)->loadObjectList();

Expand Down

0 comments on commit 6dc75ed

Please sign in to comment.