Skip to content

Commit

Permalink
Fix cache issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavobazzo committed Apr 19, 2024
1 parent 01b1523 commit 44f14e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
function filter_recitactivity_before_standard_top_of_body_html() {
global $PAGE;

$PAGE->requires->js(new moodle_url('/filter/recitactivity/filter.js'), false);
$PAGE->requires->js(new moodle_url('/filter/recitactivity/filter.js?v=1184'), false);
$PAGE->requires->js_init_call('filter_recitactivity_init_vars', array());
}
4 changes: 2 additions & 2 deletions src/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@

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

$plugin->version = 2024020102; // The current plugin version (Date: YYYYMMDDXX).
$plugin->version = 2024020103; // The current plugin version (Date: YYYYMMDDXX).
$plugin->requires = 2020061500.00; // Moodle 3.9.0
$plugin->component = 'filter_recitactivity'; // Full name of the plugin (used for diagnostics)
$plugin->release = 'v1.18.3-stable';
$plugin->release = 'v1.18.4-stable';
$plugin->maturity = MATURITY_STABLE;
$plugin->supported = [39, 401]; // Moodle 3.9.x, 3.10.x, 3.11.x and 4.0.x are supported.

0 comments on commit 44f14e6

Please sign in to comment.