diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-05-15 20:50:29 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-05-15 20:50:29 +0000 |
| commit | 5b4b7f540bdaaba71557ffd528319025ebf028d2 (patch) | |
| tree | 59e5efad02c53fda815c5ce945f24ca5a65241ea /lib/classes/Seminar.class.php | |
| parent | f9c634a9fe0fb5ac4c5a391fea813603631afc0f (diff) | |
fixes #4133
Closes #4133
Merge request studip/studip!2978
Diffstat (limited to 'lib/classes/Seminar.class.php')
| -rw-r--r-- | lib/classes/Seminar.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/classes/Seminar.class.php b/lib/classes/Seminar.class.php index dda25ee..8aa3d41 100644 --- a/lib/classes/Seminar.class.php +++ b/lib/classes/Seminar.class.php @@ -1565,7 +1565,7 @@ class Seminar SeminarCycleDate::deleteBySQL('seminar_id = ' . DBManager::get()->quote($s_id)); // Alle weiteren Postings zu diesem Seminar in den Forums-Modulen löschen - foreach (PluginEngine::getPlugins('ForumModule') as $plugin) { + foreach (PluginEngine::getPlugins(ForumModule::class) as $plugin) { $plugin->deleteContents($s_id); // delete content irrespective of plugin-activation in the seminar if ($plugin->isActivated($s_id)) { // only show a message, if the plugin is activated, to not confuse the user |
