mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
MDL-43146 enrol_imsenterprise: missing sesskey protection
This commit is contained in:
parent
f4f0aa27d4
commit
caf7665077
@ -24,6 +24,7 @@
|
||||
require_once(dirname(dirname(dirname(__FILE__))) . '/config.php');
|
||||
require_login(0, false);
|
||||
require_capability('moodle/site:config', context_system::instance());
|
||||
require_sesskey();
|
||||
|
||||
$site = get_site();
|
||||
|
||||
|
@ -119,7 +119,8 @@ if ($ADMIN->fulltree) {
|
||||
$settings->add(new admin_setting_configcheckbox('enrol_imsenterprise/imscapitafix',
|
||||
get_string('usecapitafix', 'enrol_imsenterprise'), get_string('usecapitafix_desc', 'enrol_imsenterprise'), 0));
|
||||
|
||||
$importnowstring = get_string('aftersaving...', 'enrol_imsenterprise').' <a href="../enrol/imsenterprise/importnow.php">';
|
||||
$importnowstring .= get_string('doitnow', 'enrol_imsenterprise').'</a>';
|
||||
$importurl = new moodle_url('/enrol/imsenterprise/importnow.php', array('sesskey' => sesskey()));
|
||||
$importnowstring = get_string('aftersaving...', 'enrol_imsenterprise').' ';
|
||||
$importnowstring .= html_writer::link($importurl, get_string('doitnow', 'enrol_imsenterprise'));
|
||||
$settings->add(new admin_setting_heading('enrol_imsenterprise_doitnowmessage', '', $importnowstring));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user