diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2022-11-24 10:29:24 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2022-11-24 10:29:24 +0000 |
| commit | 7dddea8ccca601bf2da28960f2e27a223fe60ea6 (patch) | |
| tree | b34ee92f9a4e0e4c1f7e4dcf5f15b396f9097d6f /app/controllers/admin/courses.php | |
| parent | 1231022837beceedef376e4bb8084ff38fbc7d93 (diff) | |
rework aux lock rules, use sorm model, deprecate old class and let name and description be translatable, fixes #1791
Closes #1791
Merge request studip/studip!1177
Diffstat (limited to 'app/controllers/admin/courses.php')
| -rw-r--r-- | app/controllers/admin/courses.php | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/app/controllers/admin/courses.php b/app/controllers/admin/courses.php index e832628..7e78aae 100644 --- a/app/controllers/admin/courses.php +++ b/app/controllers/admin/courses.php @@ -372,13 +372,7 @@ class Admin_CoursesController extends AuthenticatedController ]], LockRule::findAllByType('sem') )); - $this->aux_lock_rules = array_merge( - [[ - 'name' => '--' . _("keine Zusatzangaben") . '--', - 'lock_id' => 'none' - ]], - AuxLockRules::getAllLockRules() - ); + $this->aux_lock_rules = AuxLockRule::findBySQL('1 ORDER BY name'); //build the sidebar: |
