Skip to content

Commit

Permalink
Merge pull request #182 from davidherney/MOODLE_402_STABLE
Browse files Browse the repository at this point in the history
New release with stabilization improvements
  • Loading branch information
davidherney committed May 9, 2024
2 parents 21c8e94 + 61cef85 commit 924d1ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Download zip package, extract the onetopic folder and upload this folder into co
## IN VERSION

### 2024050303:
* Update section control menu for Moodle 4.2
* Update section control menu for Moodle 4.2 and stabilization improvements.

### 2024050301:
* Support bulk edit tools.
Expand Down
2 changes: 1 addition & 1 deletion classes/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ private function get_tabs(course_modinfo $modinfo, \renderer_base $output): \for
} while ($parentformatoptions['level'] == 1 && $prevsectionindex >= $firstsection);

if ($parentformatoptions['firsttabtext']) {
$indextab->content = format_string($parentformatoptions['firsttabtext'], true, $course->id);
$indextab->content = format_text($parentformatoptions['firsttabtext'], true, $course->id);
} else {
$indextab->content = get_string('index', 'format_onetopic');
}
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2024050302.01; // The current plugin version (Date: YYYYMMDDXX).
$plugin->version = 2024050303; // The current plugin version (Date: YYYYMMDDXX).
$plugin->requires = 2023041800; // Requires this Moodle version.
$plugin->component = 'format_onetopic'; // Full name of the plugin (used for diagnostics).
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '4.2.02(ElCardal)';
$plugin->release = '4.2.03(ElCardal)';
$plugin->dependencies = ['format_topics' => 2023042400];

0 comments on commit 924d1ed

Please sign in to comment.