Skip to content

Commit

Permalink
Merge pull request #39 from Opencast-Moodle/update/4.3
Browse files Browse the repository at this point in the history
let cbf fix the errors
  • Loading branch information
NinaHerrmann authored Nov 23, 2023
2 parents ca66e20 + f662374 commit bd87bb6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class filter_opencast extends moodle_text_filter {
* @return array|mixed|string|string[]|null
* @throws dml_exception
*/
public function filter($text, array $options = array()) {
public function filter($text, array $options = []) {
global $CFG, $PAGE;
$i = 0;

Expand Down
16 changes: 8 additions & 8 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
defined('MOODLE_INTERNAL') || die();

$plugin->component = 'filter_opencast';
$plugin->release = 'development-version';
$plugin->version = 2023030100;
$plugin->requires = 2020061500; // Requires Moodle 3.9+.
$plugin->maturity = MATURITY_ALPHA;
$plugin->dependencies = array(
'tool_opencast' => 2023030100,
'mod_opencast' => 2023052300
);
$plugin->release = 'v4.3-r1';
$plugin->version = 2023112200;
$plugin->requires = 2020061524; // Requires Moodle 3.9+.
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = [
'tool_opencast' => 2023112200,
'mod_opencast' => 2023112200,
];

0 comments on commit bd87bb6

Please sign in to comment.