diff options
| author | Thomas Hackl <hackl@data-quest.de> | 2023-08-04 11:29:33 +0200 |
|---|---|---|
| committer | Thomas Hackl <hackl@data-quest.de> | 2023-08-04 11:29:33 +0200 |
| commit | 43d9d711412ab70638e896ea6a0ad59a48cab754 (patch) | |
| tree | 72451302ddd7ead910e1b858c42ecb296d9dd359 /app/controllers/admin/courses.php | |
| parent | 1716e9bf5cbd1aca80060df24c4b0be1475b7d47 (diff) | |
open assign form in dialog, fixes #2999
Diffstat (limited to 'app/controllers/admin/courses.php')
| -rw-r--r-- | app/controllers/admin/courses.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/controllers/admin/courses.php b/app/controllers/admin/courses.php index 05e59f6..c39bceb 100644 --- a/app/controllers/admin/courses.php +++ b/app/controllers/admin/courses.php @@ -491,7 +491,10 @@ class Admin_CoursesController extends AuthenticatedController '<input type="checkbox" data-proxyfor=".course-admin td:last-child :checkbox"></label>'; $data['buttons_bottom'] = (string) \Studip\Button::createAccept( _('Mehrfachzuordnung von Studienbereichen'), 'batch_assign_semtree', - ['formaction' => URLHelper::getURL('dispatch.php/admin/tree/batch_assign_semtree')]); + [ + 'formaction' => URLHelper::getURL('dispatch.php/admin/tree/batch_assign_semtree'), + 'data-dialog' => 'size=big' + ]); break; default: foreach (PluginManager::getInstance()->getPlugins('AdminCourseAction') as $plugin) { |
