From: Marcel Werk Date: Sat, 26 Apr 2014 12:06:07 +0000 (+0200) Subject: Fixed missing sort order X-Git-Tag: 2.0.6~11 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3f09c479b277ec0948cded3ec3fc5444c94c7abe;p=GitHub%2FWoltLab%2FWCF.git Fixed missing sort order --- diff --git a/wcfsetup/install/files/lib/acp/form/LabelAddForm.class.php b/wcfsetup/install/files/lib/acp/form/LabelAddForm.class.php index 891a8c4d2c..9202fc2506 100644 --- a/wcfsetup/install/files/lib/acp/form/LabelAddForm.class.php +++ b/wcfsetup/install/files/lib/acp/form/LabelAddForm.class.php @@ -193,6 +193,7 @@ class LabelAddForm extends AbstractForm { */ public function readData() { $this->labelGroupList = new LabelGroupList(); + $this->labelGroupList->sqlOrderBy = 'label_group.groupName'; $this->labelGroupList->readObjects(); parent::readData();