Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Merge branch 'MDL-38419' of https://github.com/moodlerooms/moodle
[moodle.git]
/
mod
/
lti
/
locallib.php
diff --git
a/mod/lti/locallib.php
b/mod/lti/locallib.php
index
3f32ec1
..
f0fdcf6
100644
(file)
--- a/
mod/lti/locallib.php
+++ b/
mod/lti/locallib.php
@@
-1168,7
+1168,7
@@
function lti_ensure_url_is_https($url) {
} else {
//If the URL starts with http, replace with https
if (stripos($url, 'http://') === 0) {
- $url = 'https://' . substr($url,
8
);
+ $url = 'https://' . substr($url,
7
);
}
}