Update reactionmodel to use SortField

This commit is contained in:
Zachary Doll 2013-11-15 10:56:13 -06:00
parent b5a16c3657
commit 2c4ad1d48c

View File

@ -41,7 +41,7 @@ class ReactionModel extends Gdn_Model {
self::$_Actions = $this->SQL
->Select()
->From('Action')
->OrderBy('ActionID')
->OrderBy('Sort')
->Get()
->Result();
}