mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
Merge branch 'MDL-67749-master' of git://github.com/dpalou/moodle
This commit is contained in:
commit
dc55029bca
@ -773,7 +773,8 @@ function external_generate_token($tokentype, $serviceorid, $userid, $contextorid
|
||||
if (!empty($iprestriction)) {
|
||||
$newtoken->iprestriction = $iprestriction;
|
||||
}
|
||||
$newtoken->privatetoken = null;
|
||||
// Generate the private token, it must be transmitted only via https.
|
||||
$newtoken->privatetoken = random_string(64);
|
||||
$DB->insert_record('external_tokens', $newtoken);
|
||||
return $newtoken->token;
|
||||
}
|
||||
|
@ -370,7 +370,8 @@ class webservice {
|
||||
$newtoken->contextid = context_system::instance()->id;
|
||||
$newtoken->creatorid = $userid;
|
||||
$newtoken->timecreated = time();
|
||||
$newtoken->privatetoken = null;
|
||||
// Generate the private token, it must be transmitted only via https.
|
||||
$newtoken->privatetoken = random_string(64);
|
||||
|
||||
$DB->insert_record('external_tokens', $newtoken);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user