diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2022-07-01 15:02:02 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2022-07-01 15:02:02 +0000 |
| commit | 3fb989eebb7db40284cd8d9b023b1b2758260fd8 (patch) | |
| tree | 16da384180723cc4fa7b9d498858c3376e9c84a7 /lib/elearning/LonCapaContentModule.class.php | |
| parent | 7bbef588b396afb78375612ff70e6940b9f07670 (diff) | |
make class ContentModule and method readData abstract (and fix constructor...
Closes #1252
Merge request studip/studip!767
Diffstat (limited to 'lib/elearning/LonCapaContentModule.class.php')
| -rw-r--r-- | lib/elearning/LonCapaContentModule.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/elearning/LonCapaContentModule.class.php b/lib/elearning/LonCapaContentModule.class.php index 70976cc..0f16cd0 100644 --- a/lib/elearning/LonCapaContentModule.class.php +++ b/lib/elearning/LonCapaContentModule.class.php @@ -25,7 +25,7 @@ class LonCapaContentModule extends ContentModule * @param string $module_type * @param string $cms_type */ - public function __construct($module_id = "", $module_type, $cms_type) + public function __construct($module_id, $module_type, $cms_type) { $this->lcRequest = new LonCapaRequest(); $this->cmsUrl = $GLOBALS['ELEARNING_INTERFACE_MODULES'][$cms_type]['ABSOLUTE_PATH_ELEARNINGMODULES']; |
