diff options
| author | Arne Schröder, M. A. <schroeder@data-quest.de> | 2026-02-06 14:26:39 +0000 |
|---|---|---|
| committer | Rasmus Fuhse <fuhse@data-quest.de> | 2026-02-06 14:26:39 +0000 |
| commit | 9a24cc4ebeb0edc89a7ac8dd7054a030e3f64596 (patch) | |
| tree | a3cfa0a42211c5c194d4cb3cfab28afef3a0a778 | |
| parent | 2e2da4616c3943c9fa4e0e3b9d285b4f7445e713 (diff) | |
Resolve "ILIAS-Schnittstelle: Suche von Lernobjekten nur für zuerst angebundene ILIAS-Instanz"
Closes #6074
Merge request studip/studip!4639
| -rw-r--r-- | app/controllers/course/ilias_interface.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/controllers/course/ilias_interface.php b/app/controllers/course/ilias_interface.php index 64d6f6c..c0c8b02 100644 --- a/app/controllers/course/ilias_interface.php +++ b/app/controllers/course/ilias_interface.php @@ -260,6 +260,9 @@ class Course_IliasInterfaceController extends AuthenticatedController } // get active ILIAS installations + $this->ilias = null; + $this->ilias_index = ''; + $this->ilias_modules = []; $this->ilias_list = []; $this->mode = $mode; $this->keep_dialog = false; @@ -296,7 +299,6 @@ class Course_IliasInterfaceController extends AuthenticatedController } $this->ilias = $this->ilias_list[$index]; $this->ilias_index = $index; - $this->ilias_modules = []; $object_connections = new IliasObjectConnections($this->seminar_id); $course_modules = $object_connections->getConnections(); |
