Skip to content

Commit

Permalink
Merge pull request #27 from hrimhari/bugfix/ISSUE-26-phantom-confirm
Browse files Browse the repository at this point in the history
Bugfix/issue 26 phantom confirm
  • Loading branch information
hrimhari authored Jul 5, 2019
2 parents 6f38c61 + 3b0704b commit 37d20d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions confirm.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@

require('../../config.php');
require_once($CFG->libdir.'/authlib.php');
require_once($CFG->libdir.'/adminlib.php');

require_login();
require_capability('moodle/user:update', context_system::instance());

$data = optional_param('data', '', PARAM_RAW); // Formatted as: secret/username.

Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@

defined('MOODLE_INTERNAL') || die;

$plugin->version = 2017072000; // The current plugin version (Date: YYYYMMDDXX).
$plugin->version = 2019070400; // The current plugin version (Date: YYYYMMDDXX).
$plugin->requires = 2015051101; // Requires this Moodle version.
$plugin->component = 'auth_emailadmin'; // Full name of the plugin (used for diagnostics).
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '1.4.1';
$plugin->release = '1.4.2';

0 comments on commit 37d20d3

Please sign in to comment.