diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-06-21 09:29:24 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-06-21 09:29:24 +0000 |
| commit | b1f13ce8299d581ccb889e2d98e13574bffcc5ba (patch) | |
| tree | 644385d6fea33f831a714fc3783f8161a2cb1d86 /lib/plugins/engine/PluginManager.php | |
| parent | 7635e34c038e86e2b369b3f6edc457042ffa5b66 (diff) | |
add remaining class filename and add migration to fix the cronjobs, re #4282
Merge request studip/studip!3136
Diffstat (limited to 'lib/plugins/engine/PluginManager.php')
| -rw-r--r-- | lib/plugins/engine/PluginManager.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/plugins/engine/PluginManager.php b/lib/plugins/engine/PluginManager.php index 7e36fa0..ec434a9 100644 --- a/lib/plugins/engine/PluginManager.php +++ b/lib/plugins/engine/PluginManager.php @@ -1,6 +1,6 @@ <?php /** - * PluginManager.class.php - plugin manager for Stud.IP + * PluginManager.php - plugin manager for Stud.IP * * @copyright 2009 Elmar Ludwig * @license GPL2 or any later version @@ -351,10 +351,10 @@ class PluginManager $path = 'lib/modules'; } - $pluginfile = $basepath.'/'.$path.'/'.$class.'.class.php'; + $pluginfile = $basepath.'/'.$path.'/'.$class.'.php'; if (!file_exists($pluginfile)) { - $pluginfile = $basepath.'/'.$path.'/'.$class.'.php'; + $pluginfile = $basepath.'/'.$path.'/'.$class.'.class.php'; if (!file_exists($pluginfile)) { return null; |
