mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
MDL-42834 admin: Removal of httpswwwroot
This commit is contained in:
parent
cd1eb7ce9c
commit
672f483670
@ -134,7 +134,7 @@ class api {
|
||||
list($maintenancemessage, $notusedformat) = external_format_text($CFG->maintenance_message, FORMAT_MOODLE, $context->id);
|
||||
$settings = array(
|
||||
'wwwroot' => $CFG->wwwroot,
|
||||
'httpswwwroot' => $CFG->httpswwwroot,
|
||||
'httpswwwroot' => $CFG->wwwroot,
|
||||
'sitename' => external_format_string($SITE->fullname, $context->id, true),
|
||||
'guestlogin' => $CFG->guestloginbutton,
|
||||
'rememberusername' => $CFG->rememberusername,
|
||||
|
@ -235,7 +235,6 @@ class tool_mobile_external_testcase extends externallib_advanced_testcase {
|
||||
|
||||
// Need to simulate a non HTTPS site here.
|
||||
$CFG->wwwroot = str_replace('https:', 'http:', $CFG->wwwroot);
|
||||
$CFG->httpswwwroot = str_replace('https:', 'http:', $CFG->wwwroot);
|
||||
|
||||
$this->resetAfterTest(true);
|
||||
$this->setAdminUser();
|
||||
|
@ -90,8 +90,8 @@ class login implements renderable, templatable {
|
||||
$this->autofocusform = !empty($CFG->loginpageautofocus);
|
||||
$this->rememberusername = isset($CFG->rememberusername) and $CFG->rememberusername == 2;
|
||||
|
||||
$this->forgotpasswordurl = new moodle_url($CFG->httpswwwroot . '/login/forgot_password.php');
|
||||
$this->loginurl = new moodle_url($CFG->httpswwwroot . '/login/index.php');
|
||||
$this->forgotpasswordurl = new moodle_url($CFG->wwwroot . '/login/forgot_password.php');
|
||||
$this->loginurl = new moodle_url($CFG->wwwroot . '/login/index.php');
|
||||
$this->signupurl = new moodle_url('/login/signup.php');
|
||||
|
||||
// Authentication instructions.
|
||||
|
@ -1671,8 +1671,8 @@ class auth_plugin_ldap extends auth_plugin_base {
|
||||
if ($referer &&
|
||||
$referer != $CFG->wwwroot &&
|
||||
$referer != $CFG->wwwroot . '/' &&
|
||||
$referer != $CFG->httpswwwroot . '/login/' &&
|
||||
$referer != $CFG->httpswwwroot . '/login/index.php') {
|
||||
$referer != $CFG->wwwroot . '/login/' &&
|
||||
$referer != $CFG->wwwroot . '/login/index.php') {
|
||||
$SESSION->wantsurl = $referer;
|
||||
}
|
||||
}
|
||||
@ -1684,7 +1684,7 @@ class auth_plugin_ldap extends auth_plugin_base {
|
||||
$sesskey = sesskey();
|
||||
redirect($CFG->wwwroot.'/auth/ldap/ntlmsso_magic.php?sesskey='.$sesskey);
|
||||
} else if ($this->config->ntlmsso_ie_fastpath == AUTH_NTLM_FASTPATH_YESFORM) {
|
||||
redirect($CFG->httpswwwroot.'/login/index.php?authldap_skipntlmsso=1');
|
||||
redirect($CFG-wwwroot.'/login/index.php?authldap_skipntlmsso=1');
|
||||
}
|
||||
}
|
||||
redirect($CFG->wwwroot.'/auth/ldap/ntlmsso_attempt.php');
|
||||
@ -1699,7 +1699,7 @@ class auth_plugin_ldap extends auth_plugin_base {
|
||||
// we don't want to use at all. As we can't get rid of it, just point
|
||||
// $SESSION->wantsurl to $CFG->wwwroot (after all, we came from there).
|
||||
if (empty($SESSION->wantsurl)
|
||||
&& (get_local_referer() == $CFG->httpswwwroot.'/auth/ldap/ntlmsso_finish.php')) {
|
||||
&& (get_local_referer() == $CFG->wwwroot.'/auth/ldap/ntlmsso_finish.php')) {
|
||||
|
||||
$SESSION->wantsurl = $CFG->wwwroot;
|
||||
}
|
||||
|
@ -32,6 +32,6 @@ echo $OUTPUT->header();
|
||||
|
||||
$msg = '<p>'.get_string('ntlmsso_attempting', 'auth_ldap').'</p>'
|
||||
. '<img width="1", height="1" '
|
||||
. ' src="' . $CFG->httpswwwroot . '/auth/ldap/ntlmsso_magic.php?sesskey='
|
||||
. ' src="' . $CFG->wwwroot . '/auth/ldap/ntlmsso_magic.php?sesskey='
|
||||
. $sesskey . '" />';
|
||||
redirect($CFG->httpswwwroot . '/auth/ldap/ntlmsso_finish.php', $msg, 3);
|
||||
redirect($CFG->wwwroot . '/auth/ldap/ntlmsso_finish.php', $msg, 3);
|
||||
|
@ -29,6 +29,6 @@ if (!$authplugin->ntlmsso_finish()) {
|
||||
$PAGE->set_title("$site->fullname: $loginsite");
|
||||
$PAGE->set_heading($site->fullname);
|
||||
echo $OUTPUT->header();
|
||||
redirect($CFG->httpswwwroot . '/login/index.php?authldap_skipntlmsso=1',
|
||||
redirect($CFG->wwwroot . '/login/index.php?authldap_skipntlmsso=1',
|
||||
get_string('ntlmsso_failed','auth_ldap'), 3);
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ $file = $CFG->dirroot.'/pix/spacer.gif';
|
||||
if ($authplugin->ntlmsso_magic($sesskey) && file_exists($file)) {
|
||||
if (!empty($authplugin->config->ntlmsso_ie_fastpath)) {
|
||||
if (core_useragent::is_ie()) {
|
||||
redirect($CFG->httpswwwroot.'/auth/ldap/ntlmsso_finish.php');
|
||||
redirect($CFG->wwwroot.'/auth/ldap/ntlmsso_finish.php');
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1073,7 +1073,7 @@ class auth_plugin_mnet extends auth_plugin_base {
|
||||
global $DB, $CFG;
|
||||
|
||||
// strip off wwwroot, since the remote site will prefix it's return url with this
|
||||
$wantsurl = preg_replace('/(' . preg_quote($CFG->wwwroot, '/') . '|' . preg_quote($CFG->httpswwwroot, '/') . ')/', '', $wantsurl);
|
||||
$wantsurl = preg_replace('/(' . preg_quote($CFG->wwwroot, '/') . ')/', '', $wantsurl);
|
||||
|
||||
$sql = "SELECT DISTINCT h.id, h.wwwroot, h.name, a.sso_jump_url, a.name as application
|
||||
FROM {mnet_host} h
|
||||
|
@ -339,7 +339,7 @@ class auth extends \auth_plugin_base {
|
||||
$PAGE->set_title($title);
|
||||
$PAGE->set_heading($PAGE->course->fullname);
|
||||
echo $OUTPUT->header();
|
||||
notice($message, "$CFG->httpswwwroot/index.php");
|
||||
notice($message, "$CFG->wwwroot/index.php");
|
||||
}
|
||||
|
||||
/**
|
||||
@ -363,7 +363,7 @@ class auth extends \auth_plugin_base {
|
||||
$errormsg = get_string('loginerror_nouserinfo', 'auth_oauth2');
|
||||
$SESSION->loginerrormsg = $errormsg;
|
||||
$client->log_out();
|
||||
redirect(new moodle_url($CFG->httpswwwroot . '/login/index.php'));
|
||||
redirect(new moodle_url($CFG->wwwroot . '/login/index.php'));
|
||||
}
|
||||
if (empty($userinfo['username']) || empty($userinfo['email'])) {
|
||||
// Trigger login failed event.
|
||||
@ -375,7 +375,7 @@ class auth extends \auth_plugin_base {
|
||||
$errormsg = get_string('loginerror_userincomplete', 'auth_oauth2');
|
||||
$SESSION->loginerrormsg = $errormsg;
|
||||
$client->log_out();
|
||||
redirect(new moodle_url($CFG->httpswwwroot . '/login/index.php'));
|
||||
redirect(new moodle_url($CFG->wwwroot . '/login/index.php'));
|
||||
}
|
||||
|
||||
$userinfo['username'] = trim(core_text::strtolower($userinfo['username']));
|
||||
@ -416,7 +416,7 @@ class auth extends \auth_plugin_base {
|
||||
$errormsg = get_string('confirmationpending', 'auth_oauth2');
|
||||
$SESSION->loginerrormsg = $errormsg;
|
||||
$client->log_out();
|
||||
redirect(new moodle_url($CFG->httpswwwroot . '/login/index.php'));
|
||||
redirect(new moodle_url($CFG->wwwroot . '/login/index.php'));
|
||||
}
|
||||
} else if (!empty($linkedlogin)) {
|
||||
// Trigger login failed event.
|
||||
@ -428,7 +428,7 @@ class auth extends \auth_plugin_base {
|
||||
$errormsg = get_string('confirmationpending', 'auth_oauth2');
|
||||
$SESSION->loginerrormsg = $errormsg;
|
||||
$client->log_out();
|
||||
redirect(new moodle_url($CFG->httpswwwroot . '/login/index.php'));
|
||||
redirect(new moodle_url($CFG->wwwroot . '/login/index.php'));
|
||||
}
|
||||
|
||||
$issuer = $client->get_issuer();
|
||||
@ -442,7 +442,7 @@ class auth extends \auth_plugin_base {
|
||||
$errormsg = get_string('notloggedindebug', 'auth_oauth2', get_string('loginerror_invaliddomain', 'auth_oauth2'));
|
||||
$SESSION->loginerrormsg = $errormsg;
|
||||
$client->log_out();
|
||||
redirect(new moodle_url($CFG->httpswwwroot . '/login/index.php'));
|
||||
redirect(new moodle_url($CFG->wwwroot . '/login/index.php'));
|
||||
}
|
||||
|
||||
if (!$userwasmapped) {
|
||||
@ -481,7 +481,7 @@ class auth extends \auth_plugin_base {
|
||||
$errormsg = get_string('accountexists', 'auth_oauth2');
|
||||
$SESSION->loginerrormsg = $errormsg;
|
||||
$client->log_out();
|
||||
redirect(new moodle_url($CFG->httpswwwroot . '/login/index.php'));
|
||||
redirect(new moodle_url($CFG->wwwroot . '/login/index.php'));
|
||||
}
|
||||
|
||||
if (email_is_not_allowed($userinfo['email'])) {
|
||||
@ -495,7 +495,7 @@ class auth extends \auth_plugin_base {
|
||||
$errormsg = get_string('notloggedindebug', 'auth_oauth2', $reason);
|
||||
$SESSION->loginerrormsg = $errormsg;
|
||||
$client->log_out();
|
||||
redirect(new moodle_url($CFG->httpswwwroot . '/login/index.php'));
|
||||
redirect(new moodle_url($CFG->wwwroot . '/login/index.php'));
|
||||
}
|
||||
|
||||
if (!empty($CFG->authpreventaccountcreation)) {
|
||||
@ -509,7 +509,7 @@ class auth extends \auth_plugin_base {
|
||||
$errormsg = get_string('notloggedindebug', 'auth_oauth2', $reason);
|
||||
$SESSION->loginerrormsg = $errormsg;
|
||||
$client->log_out();
|
||||
redirect(new moodle_url($CFG->httpswwwroot . '/login/index.php'));
|
||||
redirect(new moodle_url($CFG->wwwroot . '/login/index.php'));
|
||||
}
|
||||
|
||||
if ($issuer->get('requireconfirmation')) {
|
||||
|
@ -41,17 +41,17 @@
|
||||
// Redirect to SessionInitiator with entityID as argument
|
||||
if (isset($IdPs[$selectedIdP][1]) && !empty($IdPs[$selectedIdP][1])) {
|
||||
// For Shibbolet 1.x Service Providers
|
||||
header('Location: '.$IdPs[$selectedIdP][1].'?providerId='. urlencode($selectedIdP) .'&target='. urlencode($CFG->httpswwwroot.'/auth/shibboleth/index.php'));
|
||||
header('Location: '.$IdPs[$selectedIdP][1].'?providerId='. urlencode($selectedIdP) .'&target='. urlencode($CFG->wwwroot.'/auth/shibboleth/index.php'));
|
||||
|
||||
// For Shibbolet 2.x Service Providers
|
||||
// header('Location: '.$IdPs[$selectedIdP][1].'?entityID='. urlencode($selectedIdP) .'&target='. urlencode($CFG->httpswwwroot.'/auth/shibboleth/index.php'));
|
||||
// header('Location: '.$IdPs[$selectedIdP][1].'?entityID='. urlencode($selectedIdP) .'&target='. urlencode($CFG->wwwroot.'/auth/shibboleth/index.php'));
|
||||
|
||||
} else {
|
||||
// For Shibbolet 1.x Service Providers
|
||||
header('Location: /Shibboleth.sso?providerId='. urlencode($selectedIdP) .'&target='. urlencode($CFG->httpswwwroot.'/auth/shibboleth/index.php'));
|
||||
header('Location: /Shibboleth.sso?providerId='. urlencode($selectedIdP) .'&target='. urlencode($CFG->wwwroot.'/auth/shibboleth/index.php'));
|
||||
|
||||
// For Shibboleth 2.x Service Providers
|
||||
// header('Location: /Shibboleth.sso/DS?entityID='. urlencode($selectedIdP) .'&target='. urlencode($CFG->httpswwwroot.'/auth/shibboleth/index.php'));
|
||||
// header('Location: /Shibboleth.sso/DS?entityID='. urlencode($selectedIdP) .'&target='. urlencode($CFG->wwwroot.'/auth/shibboleth/index.php'));
|
||||
}
|
||||
} elseif (isset($_POST['idp']) && !isset($IdPs[$_POST['idp']])) {
|
||||
$errormsg = get_string('auth_shibboleth_errormsg', 'auth_shibboleth');
|
||||
|
@ -61,7 +61,7 @@ if ($action === 'delete') {
|
||||
die;
|
||||
} else {
|
||||
if ($manager->delete_comment($commentid)) {
|
||||
redirect($CFG->httpswwwroot.'/comment/');
|
||||
redirect($CFG->wwwroot.'/comment/');
|
||||
} else {
|
||||
$err = 'cannotdeletecomment';
|
||||
}
|
||||
@ -81,7 +81,7 @@ echo $OUTPUT->header();
|
||||
echo $OUTPUT->heading(get_string('comments'));
|
||||
echo $OUTPUT->box_start('generalbox commentsreport');
|
||||
if (!empty($err)) {
|
||||
print_error($err, 'error', $CFG->httpswwwroot.'/comment/');
|
||||
print_error($err, 'error', $CFG->wwwroot.'/comment/');
|
||||
}
|
||||
if (empty($action)) {
|
||||
echo '<form method="post">';
|
||||
|
@ -534,9 +534,6 @@ function get_file_url($path, $options=null, $type='coursefile') {
|
||||
case 'rssfile':
|
||||
$url = $CFG->wwwroot."/rss/file.php";
|
||||
break;
|
||||
case 'httpscoursefile':
|
||||
$url = $CFG->httpswwwroot."/file.php";
|
||||
break;
|
||||
case 'coursefile':
|
||||
default:
|
||||
$url = $CFG->wwwroot."/file.php";
|
||||
|
@ -80,9 +80,9 @@ class tinymce_texteditor extends texteditor {
|
||||
global $PAGE, $CFG;
|
||||
// Note: use full moodle_url instance to prevent standard JS loader, make sure we are using https on profile page if required.
|
||||
if ($CFG->debugdeveloper) {
|
||||
$PAGE->requires->js(new moodle_url($CFG->httpswwwroot.'/lib/editor/tinymce/tiny_mce/'.$this->version.'/tiny_mce_src.js'));
|
||||
$PAGE->requires->js(new moodle_url($CFG->wwwroot.'/lib/editor/tinymce/tiny_mce/'.$this->version.'/tiny_mce_src.js'));
|
||||
} else {
|
||||
$PAGE->requires->js(new moodle_url($CFG->httpswwwroot.'/lib/editor/tinymce/tiny_mce/'.$this->version.'/tiny_mce.js'));
|
||||
$PAGE->requires->js(new moodle_url($CFG->wwwroot.'/lib/editor/tinymce/tiny_mce/'.$this->version.'/tiny_mce.js'));
|
||||
}
|
||||
$PAGE->requires->js_init_call('M.editor_tinymce.init_editor', array($elementid, $this->get_init_params($elementid, $options)), true);
|
||||
if ($fpoptions) {
|
||||
@ -127,8 +127,8 @@ class tinymce_texteditor extends texteditor {
|
||||
'mode' => "exact",
|
||||
'elements' => $elementid,
|
||||
'relative_urls' => false,
|
||||
'document_base_url' => $CFG->httpswwwroot,
|
||||
'moodle_plugin_base' => "$CFG->httpswwwroot/lib/editor/tinymce/plugins/",
|
||||
'document_base_url' => $CFG->wwwroot,
|
||||
'moodle_plugin_base' => "$CFG->wwwroot/lib/editor/tinymce/plugins/",
|
||||
'content_css' => $contentcss,
|
||||
'language' => $lang,
|
||||
'directionality' => $directionality,
|
||||
@ -257,7 +257,7 @@ class tinymce_texteditor extends texteditor {
|
||||
*/
|
||||
public function get_tinymce_base_url() {
|
||||
global $CFG;
|
||||
return new moodle_url("$CFG->httpswwwroot/lib/editor/tinymce/tiny_mce/$this->version/");
|
||||
return new moodle_url("$CFG->wwwroot/lib/editor/tinymce/tiny_mce/$this->version/");
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -55,7 +55,7 @@ class tinymce_spellchecker extends editor_tinymce_plugin {
|
||||
|
||||
// Add JS file, which uses default name.
|
||||
$this->add_js_plugin($params);
|
||||
$params['spellchecker_rpc_url'] = $CFG->httpswwwroot .
|
||||
$params['spellchecker_rpc_url'] = $CFG->wwwroot .
|
||||
'/lib/editor/tinymce/plugins/spellchecker/rpc.php';
|
||||
$params['spellchecker_languages'] = $spelllanguagelist;
|
||||
}
|
||||
|
@ -74,7 +74,7 @@ class editor_tinymce_testcase extends advanced_testcase {
|
||||
'xhtmlxtras,template,pagebreak',
|
||||
'gecko_spellcheck' => true,
|
||||
'theme_advanced_font_sizes' => "1,2,3,4,5,6,7",
|
||||
'moodle_plugin_base' => "$CFG->httpswwwroot/lib/editor/tinymce/plugins/",
|
||||
'moodle_plugin_base' => "$CFG->wwwroot/lib/editor/tinymce/plugins/",
|
||||
'theme_advanced_font_sizes' => "1,2,3,4,5,6,7",
|
||||
'theme_advanced_layout_manager' => "SimpleLayout",
|
||||
'theme_advanced_buttons1' => 'one,two,|,three,four',
|
||||
|
@ -436,7 +436,7 @@ function file_prepare_draft_area(&$draftitemid, $contextid, $component, $fileare
|
||||
// at this point there should not be any draftfile links yet,
|
||||
// because this is a new text from database that should still contain the @@pluginfile@@ links
|
||||
// this happens when developers forget to post process the text
|
||||
$text = str_replace("\"$CFG->httpswwwroot/draftfile.php", "\"$CFG->httpswwwroot/brokenfile.php#", $text);
|
||||
$text = str_replace("\"$CFG->wwwroot/draftfile.php", "\"$CFG->wwwroot/brokenfile.php#", $text);
|
||||
}
|
||||
} else {
|
||||
// nothing to do
|
||||
|
@ -1527,7 +1527,7 @@ function filter_add_javascript($text) {
|
||||
<script type=\"text/javascript\">
|
||||
<!--
|
||||
function openpopup(url,name,options,fullscreen) {
|
||||
fullurl = \"".$CFG->httpswwwroot."\" + url;
|
||||
fullurl = \"".$CFG->wwwroot."\" + url;
|
||||
windowobj = window.open(fullurl,name,options);
|
||||
if (fullscreen) {
|
||||
windowobj.moveTo(0,0);
|
||||
|
@ -4445,7 +4445,7 @@ function complete_user_login($user) {
|
||||
} else {
|
||||
require_once($CFG->dirroot . '/login/lib.php');
|
||||
$SESSION->wantsurl = core_login_get_return_url();
|
||||
redirect($CFG->httpswwwroot.'/login/change_password.php');
|
||||
redirect($CFG->wwwroot.'/login/change_password.php');
|
||||
}
|
||||
} else {
|
||||
print_error('nopasswordchangeforced', 'auth');
|
||||
@ -6160,7 +6160,7 @@ function reset_password_and_mail($user) {
|
||||
$a->sitename = format_string($site->fullname);
|
||||
$a->username = $user->username;
|
||||
$a->newpassword = $newpassword;
|
||||
$a->link = $CFG->httpswwwroot .'/login/change_password.php';
|
||||
$a->link = $CFG->wwwroot .'/login/change_password.php';
|
||||
$a->signoff = generate_email_signoff();
|
||||
|
||||
$message = get_string('newpasswordtext', '', $a);
|
||||
@ -6241,7 +6241,7 @@ function send_password_change_confirmation_email($user, $resetrecord) {
|
||||
$data->lastname = $user->lastname;
|
||||
$data->username = $user->username;
|
||||
$data->sitename = format_string($site->fullname);
|
||||
$data->link = $CFG->httpswwwroot .'/login/forgot_password.php?token='. $resetrecord->token;
|
||||
$data->link = $CFG->wwwroot .'/login/forgot_password.php?token='. $resetrecord->token;
|
||||
$data->admin = generate_email_signoff();
|
||||
$data->resetminutes = $pwresetmins;
|
||||
|
||||
|
@ -432,7 +432,6 @@ class user_picture implements renderable {
|
||||
// If the currently requested page is https then we'll return an
|
||||
// https gravatar page.
|
||||
if (is_https()) {
|
||||
$gravatardefault = str_replace($CFG->wwwroot, $CFG->httpswwwroot, $gravatardefault); // Replace by secure url.
|
||||
return new moodle_url("https://secure.gravatar.com/avatar/{$md5}", array('s' => $size, 'd' => $gravatardefault));
|
||||
} else {
|
||||
return new moodle_url("http://www.gravatar.com/avatar/{$md5}", array('s' => $size, 'd' => $gravatardefault));
|
||||
@ -520,7 +519,7 @@ class help_icon implements renderable, templatable {
|
||||
$data->icon = (new pix_icon('help', $alt, 'core', ['class' => 'iconhelp']))->export_for_template($output);
|
||||
$data->linktext = $this->linktext;
|
||||
$data->title = get_string('helpprefix2', '', trim($title, ". \t"));
|
||||
$data->url = (new moodle_url($CFG->httpswwwroot . '/help.php', [
|
||||
$data->url = (new moodle_url($CFG->wwwroot . '/help.php', [
|
||||
'component' => $this->component,
|
||||
'identifier' => $this->identifier,
|
||||
'lang' => current_language()
|
||||
|
@ -894,7 +894,7 @@ class theme_config {
|
||||
global $CFG;
|
||||
$rev = theme_get_revision();
|
||||
if ($rev > -1) {
|
||||
$url = new moodle_url("$CFG->httpswwwroot/theme/styles.php");
|
||||
$url = new moodle_url("$CFG->wwwroot/theme/styles.php");
|
||||
if (!empty($CFG->slasharguments)) {
|
||||
$url->set_slashargument('/'.$this->name.'/'.$rev.'/editor', 'noparam', true);
|
||||
} else {
|
||||
@ -902,7 +902,7 @@ class theme_config {
|
||||
}
|
||||
} else {
|
||||
$params = array('theme'=>$this->name, 'type'=>'editor');
|
||||
$url = new moodle_url($CFG->httpswwwroot.'/theme/styles_debug.php', $params);
|
||||
$url = new moodle_url($CFG->wwwroot.'/theme/styles_debug.php', $params);
|
||||
}
|
||||
return $url;
|
||||
}
|
||||
@ -966,7 +966,7 @@ class theme_config {
|
||||
|
||||
if ($rev > -1) {
|
||||
$filename = right_to_left() ? 'all-rtl' : 'all';
|
||||
$url = new moodle_url("$CFG->httpswwwroot/theme/styles.php");
|
||||
$url = new moodle_url("$CFG->wwwroot/theme/styles.php");
|
||||
$themesubrevision = theme_get_sub_revision_for_theme($this->name);
|
||||
|
||||
// Provide the sub revision to allow us to invalidate cached theme CSS
|
||||
@ -1002,7 +1002,7 @@ class theme_config {
|
||||
$urls[] = $url;
|
||||
|
||||
} else {
|
||||
$baseurl = new moodle_url($CFG->httpswwwroot.'/theme/styles_debug.php');
|
||||
$baseurl = new moodle_url($CFG->wwwroot.'/theme/styles_debug.php');
|
||||
|
||||
$css = $this->get_css_files(true);
|
||||
if (!$svg) {
|
||||
@ -1686,11 +1686,11 @@ class theme_config {
|
||||
}
|
||||
|
||||
if (!empty($CFG->slasharguments) and $rev > 0) {
|
||||
$url = new moodle_url("$CFG->httpswwwroot/theme/javascript.php");
|
||||
$url = new moodle_url("$CFG->wwwroot/theme/javascript.php");
|
||||
$url->set_slashargument('/'.$this->name.'/'.$rev.'/'.$params['type'], 'noparam', true);
|
||||
return $url;
|
||||
} else {
|
||||
return new moodle_url($CFG->httpswwwroot.'/theme/javascript.php', $params);
|
||||
return new moodle_url($CFG->wwwroot.'/theme/javascript.php', $params);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1922,7 +1922,7 @@ class theme_config {
|
||||
|
||||
$params['image'] = $imagename;
|
||||
|
||||
$url = new moodle_url("$CFG->httpswwwroot/theme/image.php");
|
||||
$url = new moodle_url("$CFG->wwwroot/theme/image.php");
|
||||
if (!empty($CFG->slasharguments) and $rev > 0) {
|
||||
$path = '/'.$params['theme'].'/'.$params['component'].'/'.$params['rev'].'/'.$params['image'];
|
||||
if (!$svg) {
|
||||
@ -1968,7 +1968,7 @@ class theme_config {
|
||||
|
||||
$params['font'] = $font;
|
||||
|
||||
$url = new moodle_url("$CFG->httpswwwroot/theme/font.php");
|
||||
$url = new moodle_url("$CFG->wwwroot/theme/font.php");
|
||||
if (!empty($CFG->slasharguments) and $rev > 0) {
|
||||
$path = '/'.$params['theme'].'/'.$params['component'].'/'.$params['rev'].'/'.$params['font'];
|
||||
$url->set_slashargument($path, 'noparam', true);
|
||||
|
@ -187,8 +187,8 @@ class page_requirements_manager {
|
||||
}
|
||||
|
||||
// Set up some loader options.
|
||||
$this->yui3loader->local_base = $CFG->httpswwwroot . '/lib/yuilib/'. $CFG->yui3version . '/';
|
||||
$this->yui3loader->local_comboBase = $CFG->httpswwwroot . '/theme/yui_combo.php'.$sep;
|
||||
$this->yui3loader->local_base = $CFG->wwwroot . '/lib/yuilib/'. $CFG->yui3version . '/';
|
||||
$this->yui3loader->local_comboBase = $CFG->wwwroot . '/theme/yui_combo.php'.$sep;
|
||||
|
||||
if (!empty($CFG->useexternalyui)) {
|
||||
$this->yui3loader->base = 'http://yui.yahooapis.com/' . $CFG->yui3version . '/';
|
||||
@ -220,8 +220,8 @@ class page_requirements_manager {
|
||||
$configname = $this->YUI_config->set_config_source('lib/yui/config/yui2.js');
|
||||
$this->YUI_config->add_group('yui2', array(
|
||||
// Loader configuration for our 2in3, for now ignores $CFG->useexternalyui.
|
||||
'base' => $CFG->httpswwwroot . '/lib/yuilib/2in3/' . $CFG->yui2version . '/build/',
|
||||
'comboBase' => $CFG->httpswwwroot . '/theme/yui_combo.php'.$sep,
|
||||
'base' => $CFG->wwwroot . '/lib/yuilib/2in3/' . $CFG->yui2version . '/build/',
|
||||
'comboBase' => $CFG->wwwroot . '/theme/yui_combo.php'.$sep,
|
||||
'combine' => $this->yui3loader->combine,
|
||||
'ext' => false,
|
||||
'root' => '2in3/' . $CFG->yui2version .'/build/',
|
||||
@ -235,9 +235,9 @@ class page_requirements_manager {
|
||||
$configname = $this->YUI_config->set_config_source('lib/yui/config/moodle.js');
|
||||
$this->YUI_config->add_group('moodle', array(
|
||||
'name' => 'moodle',
|
||||
'base' => $CFG->httpswwwroot . '/theme/yui_combo.php' . $sep . 'm/' . $jsrev . '/',
|
||||
'base' => $CFG->wwwroot . '/theme/yui_combo.php' . $sep . 'm/' . $jsrev . '/',
|
||||
'combine' => $this->yui3loader->combine,
|
||||
'comboBase' => $CFG->httpswwwroot . '/theme/yui_combo.php'.$sep,
|
||||
'comboBase' => $CFG->wwwroot . '/theme/yui_combo.php'.$sep,
|
||||
'ext' => false,
|
||||
'root' => 'm/'.$jsrev.'/', // Add the rev to the root path so that we can control caching.
|
||||
'patterns' => array(
|
||||
@ -250,9 +250,9 @@ class page_requirements_manager {
|
||||
|
||||
$this->YUI_config->add_group('gallery', array(
|
||||
'name' => 'gallery',
|
||||
'base' => $CFG->httpswwwroot . '/lib/yuilib/gallery/',
|
||||
'base' => $CFG->wwwroot . '/lib/yuilib/gallery/',
|
||||
'combine' => $this->yui3loader->combine,
|
||||
'comboBase' => $CFG->httpswwwroot . '/theme/yui_combo.php' . $sep,
|
||||
'comboBase' => $CFG->wwwroot . '/theme/yui_combo.php' . $sep,
|
||||
'ext' => false,
|
||||
'root' => 'gallery/' . $jsrev . '/',
|
||||
'patterns' => array(
|
||||
@ -309,9 +309,6 @@ class page_requirements_manager {
|
||||
global $CFG;
|
||||
|
||||
if (empty($this->M_cfg)) {
|
||||
// JavaScript should always work with $CFG->httpswwwroot rather than $CFG->wwwroot.
|
||||
// Otherwise, in some situations, users will get warnings about insecure content
|
||||
// on secure pages from their web browser.
|
||||
|
||||
$iconsystem = \core\output\icon_system::instance();
|
||||
|
||||
@ -322,7 +319,7 @@ class page_requirements_manager {
|
||||
}
|
||||
|
||||
$this->M_cfg = array(
|
||||
'wwwroot' => $CFG->httpswwwroot, // Yes, really. See above.
|
||||
'wwwroot' => $CFG->wwwroot,
|
||||
'sesskey' => sesskey(),
|
||||
'themerev' => theme_get_revision(),
|
||||
'slasharguments' => (int)(!empty($CFG->slasharguments)),
|
||||
@ -554,14 +551,14 @@ class page_requirements_manager {
|
||||
continue;
|
||||
}
|
||||
if (!empty($CFG->slasharguments)) {
|
||||
$url = new moodle_url("$CFG->httpswwwroot/theme/jquery.php");
|
||||
$url = new moodle_url("$CFG->wwwroot/theme/jquery.php");
|
||||
$url->set_slashargument("/$component/$file");
|
||||
|
||||
} else {
|
||||
// This is not really good, we need slasharguments for relative links, this means no caching...
|
||||
$path = realpath("$componentdir/jquery/$file");
|
||||
if (strpos($path, $CFG->dirroot) === 0) {
|
||||
$url = $CFG->httpswwwroot.preg_replace('/^'.preg_quote($CFG->dirroot, '/').'/', '', $path);
|
||||
$url = $CFG->wwwroot.preg_replace('/^'.preg_quote($CFG->dirroot, '/').'/', '', $path);
|
||||
// Replace all occurences of backslashes characters in url to forward slashes.
|
||||
$url = str_replace('\\', '/', $url);
|
||||
$url = new moodle_url($url);
|
||||
@ -708,14 +705,14 @@ class page_requirements_manager {
|
||||
if (substr($url, -3) === '.js') {
|
||||
$jsrev = $this->get_jsrev();
|
||||
if (empty($CFG->slasharguments)) {
|
||||
return new moodle_url($CFG->httpswwwroot.'/lib/javascript.php', array('rev'=>$jsrev, 'jsfile'=>$url));
|
||||
return new moodle_url($CFG->wwwroot.'/lib/javascript.php', array('rev'=>$jsrev, 'jsfile'=>$url));
|
||||
} else {
|
||||
$returnurl = new moodle_url($CFG->httpswwwroot.'/lib/javascript.php');
|
||||
$returnurl = new moodle_url($CFG->wwwroot.'/lib/javascript.php');
|
||||
$returnurl->set_slashargument('/'.$jsrev.$url);
|
||||
return $returnurl;
|
||||
}
|
||||
} else {
|
||||
return new moodle_url($CFG->httpswwwroot.$url);
|
||||
return new moodle_url($CFG->wwwroot.$url);
|
||||
}
|
||||
} else {
|
||||
throw new coding_exception('Invalid JS url, it has to be shortened url starting with / or moodle_url instance.', $url);
|
||||
@ -914,7 +911,7 @@ class page_requirements_manager {
|
||||
if ($stylesheet instanceof moodle_url) {
|
||||
// ok
|
||||
} else if (strpos($stylesheet, '/') === 0) {
|
||||
$stylesheet = new moodle_url($CFG->httpswwwroot.$stylesheet);
|
||||
$stylesheet = new moodle_url($CFG->wwwroot.$stylesheet);
|
||||
} else {
|
||||
throw new coding_exception('Invalid stylesheet parameter.', $stylesheet);
|
||||
}
|
||||
@ -1318,9 +1315,9 @@ class page_requirements_manager {
|
||||
$output = '';
|
||||
$jsrev = $this->get_jsrev();
|
||||
|
||||
$jsloader = new moodle_url($CFG->httpswwwroot . '/lib/javascript.php');
|
||||
$jsloader = new moodle_url($CFG->wwwroot . '/lib/javascript.php');
|
||||
$jsloader->set_slashargument('/' . $jsrev . '/');
|
||||
$requirejsloader = new moodle_url($CFG->httpswwwroot . '/lib/requirejs.php');
|
||||
$requirejsloader = new moodle_url($CFG->wwwroot . '/lib/requirejs.php');
|
||||
$requirejsloader->set_slashargument('/' . $jsrev . '/');
|
||||
|
||||
$requirejsconfig = file_get_contents($CFG->dirroot . '/lib/requirejs/moodle-config.js');
|
||||
|
@ -1301,8 +1301,8 @@ class moodle_page {
|
||||
|
||||
if (is_string($url) && strpos($url, 'http') !== 0) {
|
||||
if (strpos($url, '/') === 0) {
|
||||
// We have to use httpswwwroot here, because of loginhttps pages.
|
||||
$url = $CFG->httpswwwroot . $url;
|
||||
// Add the wwwroot to the relative url.
|
||||
$url = $CFG->wwwroot . $url;
|
||||
} else {
|
||||
throw new coding_exception('Invalid parameter $url, has to be full url or in shortened form starting with /.');
|
||||
}
|
||||
@ -1311,10 +1311,10 @@ class moodle_page {
|
||||
$this->_url = new moodle_url($url, $params);
|
||||
|
||||
$fullurl = $this->_url->out_omit_querystring();
|
||||
if (strpos($fullurl, "$CFG->httpswwwroot/") !== 0) {
|
||||
debugging('Most probably incorrect set_page() url argument, it does not match the httpswwwroot!');
|
||||
if (strpos($fullurl, "$CFG->wwwroot/") !== 0) {
|
||||
debugging('Most probably incorrect set_page() url argument, it does not match the wwwroot!');
|
||||
}
|
||||
$shorturl = str_replace("$CFG->httpswwwroot/", '', $fullurl);
|
||||
$shorturl = str_replace("$CFG->wwwroot/", '', $fullurl);
|
||||
|
||||
if (is_null($this->_pagetype)) {
|
||||
$this->initialise_default_pagetype($shorturl);
|
||||
|
@ -52,6 +52,7 @@ class core_phpunit_basic_testcase extends basic_testcase {
|
||||
*/
|
||||
public function test_bootstrap() {
|
||||
global $CFG;
|
||||
// The use of httpswwwroot is deprecated, but we are still setting it for backwards compatibility.
|
||||
$this->assertTrue(isset($CFG->httpswwwroot));
|
||||
$this->assertEquals($CFG->httpswwwroot, $CFG->wwwroot);
|
||||
$this->assertEquals($CFG->prefix, $CFG->phpunit_prefix);
|
||||
|
@ -1916,7 +1916,7 @@ function core_question_question_preview_pluginfile($previewcontext, $questionid,
|
||||
function question_make_export_url($contextid, $categoryid, $format, $withcategories,
|
||||
$withcontexts, $filename) {
|
||||
global $CFG;
|
||||
$urlbase = "$CFG->httpswwwroot/pluginfile.php";
|
||||
$urlbase = "$CFG->wwwroot/pluginfile.php";
|
||||
return moodle_url::make_file_url($urlbase,
|
||||
"/$contextid/question/export/{$categoryid}/{$format}/{$withcategories}" .
|
||||
"/{$withcontexts}/{$filename}", true);
|
||||
|
@ -528,8 +528,8 @@ global $FULLSCRIPT;
|
||||
*/
|
||||
global $SCRIPT;
|
||||
|
||||
// Set httpswwwroot default value (this variable will replace $CFG->wwwroot
|
||||
// inside some URLs used in HTTPSPAGEREQUIRED pages.
|
||||
// Set httpswwwroot to $CFG->wwwroot for backwards compatibility
|
||||
// The loginhttps option is deprecated, so httpswwwroot is no longer necessary. See MDL-42834.
|
||||
$CFG->httpswwwroot = $CFG->wwwroot;
|
||||
|
||||
require_once($CFG->libdir .'/setuplib.php'); // Functions that MUST be loaded first
|
||||
|
@ -126,7 +126,6 @@ class core_outputcomponents_testcase extends advanced_testcase {
|
||||
$this->assertEquals(1, $CFG->themerev);
|
||||
$this->assertEquals(0, $CFG->themedesignermode);
|
||||
$this->assertSame('https://www.example.com/moodle', $CFG->wwwroot);
|
||||
$this->assertSame($CFG->wwwroot, $CFG->httpswwwroot);
|
||||
$this->assertEquals(0, $CFG->enablegravatar);
|
||||
$this->assertSame('mm', $CFG->gravatardefaulturl);
|
||||
|
||||
@ -207,7 +206,6 @@ class core_outputcomponents_testcase extends advanced_testcase {
|
||||
|
||||
// Http version.
|
||||
$CFG->wwwroot = str_replace('https:', 'http:', $CFG->wwwroot);
|
||||
$CFG->httpswwwroot = str_replace('https:', 'http:', $CFG->wwwroot);
|
||||
|
||||
// Verify defaults to misteryman (mm).
|
||||
$up2 = new user_picture($user2);
|
||||
@ -222,13 +220,13 @@ class core_outputcomponents_testcase extends advanced_testcase {
|
||||
$this->assertSame($CFG->wwwroot.'/pluginfile.php/'.$context1->id.'/user/icon/boost/f2?rev=11', $up1->get_url($page, $renderer)->out(false));
|
||||
|
||||
// Https version.
|
||||
$CFG->httpswwwroot = str_replace('http:', 'https:', $CFG->wwwroot);
|
||||
$CFG->wwwroot = str_replace('http:', 'https:', $CFG->wwwroot);
|
||||
|
||||
$up1 = new user_picture($user1);
|
||||
$this->assertSame($CFG->httpswwwroot.'/pluginfile.php/'.$context1->id.'/user/icon/boost/f2?rev=11', $up1->get_url($page, $renderer)->out(false));
|
||||
$this->assertSame($CFG->wwwroot.'/pluginfile.php/'.$context1->id.'/user/icon/boost/f2?rev=11', $up1->get_url($page, $renderer)->out(false));
|
||||
|
||||
$up3 = new user_picture($user3);
|
||||
$this->assertSame($CFG->httpswwwroot.'/theme/image.php/boost/core/1/u/f2', $up3->get_url($page, $renderer)->out(false));
|
||||
$this->assertSame($CFG->wwwroot.'/theme/image.php/boost/core/1/u/f2', $up3->get_url($page, $renderer)->out(false));
|
||||
|
||||
$up2 = new user_picture($user2);
|
||||
$this->assertSame('https://secure.gravatar.com/avatar/ab53a2911ddf9b4817ac01ddcd3d975f?s=35&d=https%3A%2F%2Fwww.example.com%2Fmoodle%2Fpix%2Fu%2Ff2.png', $up2->get_url($page, $renderer)->out(false));
|
||||
@ -271,7 +269,7 @@ class core_outputcomponents_testcase extends advanced_testcase {
|
||||
|
||||
// Test non-slashargument images.
|
||||
set_config('theme', 'clean');
|
||||
$CFG->httpswwwroot = $CFG->wwwroot;
|
||||
$CFG->wwwroot = str_replace('https:', 'http:', $CFG->wwwroot);
|
||||
$CFG->slasharguments = 0;
|
||||
$page = new moodle_page();
|
||||
$page->set_url('/user/profile.php');
|
||||
|
@ -165,7 +165,6 @@ class core_sessionlib_testcase extends advanced_testcase {
|
||||
// Non ssl, not set.
|
||||
'config' => array(
|
||||
'wwwroot' => 'http://example.com',
|
||||
'httpswwwroot' => 'http://example.com',
|
||||
'sslproxy' => null,
|
||||
'cookiesecure' => null,
|
||||
),
|
||||
@ -175,7 +174,6 @@ class core_sessionlib_testcase extends advanced_testcase {
|
||||
// Non ssl, off and ignored.
|
||||
'config' => array(
|
||||
'wwwroot' => 'http://example.com',
|
||||
'httpswwwroot' => 'http://example.com',
|
||||
'sslproxy' => null,
|
||||
'cookiesecure' => false,
|
||||
),
|
||||
@ -185,7 +183,6 @@ class core_sessionlib_testcase extends advanced_testcase {
|
||||
// Non ssl, on and ignored.
|
||||
'config' => array(
|
||||
'wwwroot' => 'http://example.com',
|
||||
'httpswwwroot' => 'http://example.com',
|
||||
'sslproxy' => null,
|
||||
'cookiesecure' => true,
|
||||
),
|
||||
@ -195,7 +192,6 @@ class core_sessionlib_testcase extends advanced_testcase {
|
||||
// SSL via proxy, off.
|
||||
'config' => array(
|
||||
'wwwroot' => 'http://example.com',
|
||||
'httpswwwroot' => 'http://example.com',
|
||||
'sslproxy' => true,
|
||||
'cookiesecure' => false,
|
||||
),
|
||||
@ -205,7 +201,6 @@ class core_sessionlib_testcase extends advanced_testcase {
|
||||
// SSL via proxy, on.
|
||||
'config' => array(
|
||||
'wwwroot' => 'http://example.com',
|
||||
'httpswwwroot' => 'http://example.com',
|
||||
'sslproxy' => true,
|
||||
'cookiesecure' => true,
|
||||
),
|
||||
@ -215,7 +210,6 @@ class core_sessionlib_testcase extends advanced_testcase {
|
||||
// SSL and off.
|
||||
'config' => array(
|
||||
'wwwroot' => 'https://example.com',
|
||||
'httpswwwroot' => 'https://example.com',
|
||||
'sslproxy' => null,
|
||||
'cookiesecure' => false,
|
||||
),
|
||||
@ -225,7 +219,6 @@ class core_sessionlib_testcase extends advanced_testcase {
|
||||
// SSL and on.
|
||||
'config' => array(
|
||||
'wwwroot' => 'https://example.com',
|
||||
'httpswwwroot' => 'https://example.com',
|
||||
'sslproxy' => null,
|
||||
'cookiesecure' => true,
|
||||
),
|
||||
@ -243,10 +236,10 @@ class core_sessionlib_testcase extends advanced_testcase {
|
||||
* @param bool $secure Wether cookies should be secure or not
|
||||
*/
|
||||
public function test_is_moodle_cookie_secure($config, $secure) {
|
||||
|
||||
global $CFG;
|
||||
$this->resetAfterTest();
|
||||
foreach ($config as $key => $value) {
|
||||
set_config($key, $value);
|
||||
$CFG->$key = $value;
|
||||
}
|
||||
$this->assertEquals($secure, is_moodle_cookie_secure());
|
||||
}
|
||||
|
@ -57,6 +57,7 @@ information provided here is intended especially for developers.
|
||||
* The option for Login HTTPS (authentication-only SSL) has been removed
|
||||
* $CFG->loginhttps is now deprecated, do not use it.
|
||||
* $PAGE->https_required and $PAGE->verify_https_required() are now deprecated. They are no longer used and will throw a coding_exception.
|
||||
* $CFG->httpswwwroot is now deprecated and will always result in the same value as wwwroot.
|
||||
|
||||
=== 3.3.1 ===
|
||||
|
||||
|
@ -203,7 +203,7 @@ function qualified_me() {
|
||||
/**
|
||||
* Determines whether or not the Moodle site is being served over HTTPS.
|
||||
*
|
||||
* This is done simply by checking the value of $CFG->httpswwwroot, which seems
|
||||
* This is done simply by checking the value of $CFG->wwwroot, which seems
|
||||
* to be the only reliable method.
|
||||
*
|
||||
* @return boolean True if site is served over HTTPS, false otherwise.
|
||||
@ -211,7 +211,7 @@ function qualified_me() {
|
||||
function is_https() {
|
||||
global $CFG;
|
||||
|
||||
return (strpos($CFG->httpswwwroot, 'https://') === 0);
|
||||
return (strpos($CFG->wwwroot, 'https://') === 0);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -347,12 +347,9 @@ class moodle_url {
|
||||
|
||||
// Normalise shortened form of our url ex.: '/course/view.php'.
|
||||
if (strpos($url, '/') === 0) {
|
||||
// We must not use httpswwwroot here, because it might be url of other page,
|
||||
// devs have to use httpswwwroot explicitly when creating new moodle_url.
|
||||
$url = $CFG->wwwroot.$url;
|
||||
}
|
||||
|
||||
// Now fix the admin links if needed, no need to mess with httpswwwroot.
|
||||
if ($CFG->admin !== 'admin') {
|
||||
if (strpos($url, "$CFG->wwwroot/admin/") === 0) {
|
||||
$url = str_replace("$CFG->wwwroot/admin/", "$CFG->wwwroot/$CFG->admin/", $url);
|
||||
@ -781,7 +778,7 @@ class moodle_url {
|
||||
public static function make_pluginfile_url($contextid, $component, $area, $itemid, $pathname, $filename,
|
||||
$forcedownload = false) {
|
||||
global $CFG;
|
||||
$urlbase = "$CFG->httpswwwroot/pluginfile.php";
|
||||
$urlbase = "$CFG->wwwroot/pluginfile.php";
|
||||
if ($itemid === null) {
|
||||
return self::make_file_url($urlbase, "/$contextid/$component/$area".$pathname.$filename, $forcedownload);
|
||||
} else {
|
||||
@ -807,7 +804,7 @@ class moodle_url {
|
||||
public static function make_webservice_pluginfile_url($contextid, $component, $area, $itemid, $pathname, $filename,
|
||||
$forcedownload = false) {
|
||||
global $CFG;
|
||||
$urlbase = "$CFG->httpswwwroot/webservice/pluginfile.php";
|
||||
$urlbase = "$CFG->wwwroot/webservice/pluginfile.php";
|
||||
if ($itemid === null) {
|
||||
return self::make_file_url($urlbase, "/$contextid/$component/$area".$pathname.$filename, $forcedownload);
|
||||
} else {
|
||||
@ -826,7 +823,7 @@ class moodle_url {
|
||||
*/
|
||||
public static function make_draftfile_url($draftid, $pathname, $filename, $forcedownload = false) {
|
||||
global $CFG, $USER;
|
||||
$urlbase = "$CFG->httpswwwroot/draftfile.php";
|
||||
$urlbase = "$CFG->wwwroot/draftfile.php";
|
||||
$context = context_user::instance($USER->id);
|
||||
|
||||
return self::make_file_url($urlbase, "/$context->id/user/draft/$draftid".$pathname.$filename, $forcedownload);
|
||||
@ -861,15 +858,11 @@ class moodle_url {
|
||||
global $CFG;
|
||||
|
||||
$url = $this->out($escaped, $overrideparams);
|
||||
$httpswwwroot = str_replace("http://", "https://", $CFG->wwwroot);
|
||||
|
||||
// Url should be equal to wwwroot or httpswwwroot. If not then throw exception.
|
||||
// Url should be equal to wwwroot. If not then throw exception.
|
||||
if (($url === $CFG->wwwroot) || (strpos($url, $CFG->wwwroot.'/') === 0)) {
|
||||
$localurl = substr($url, strlen($CFG->wwwroot));
|
||||
return !empty($localurl) ? $localurl : '';
|
||||
} else if (($url === $httpswwwroot) || (strpos($url, $httpswwwroot.'/') === 0)) {
|
||||
$localurl = substr($url, strlen($httpswwwroot));
|
||||
return !empty($localurl) ? $localurl : '';
|
||||
} else {
|
||||
throw new coding_exception('out_as_local_url called on a non-local URL');
|
||||
}
|
||||
@ -1318,7 +1311,7 @@ function format_text($text, $format = FORMAT_MOODLE, $options = null, $courseidd
|
||||
// this happens when developers forget to post process the text.
|
||||
// The only potential problem is that somebody might try to format
|
||||
// the text before storing into database which would be itself big bug..
|
||||
$text = str_replace("\"$CFG->httpswwwroot/draftfile.php", "\"$CFG->httpswwwroot/brokenfile.php#", $text);
|
||||
$text = str_replace("\"$CFG->wwwroot/draftfile.php", "\"$CFG->wwwroot/brokenfile.php#", $text);
|
||||
|
||||
if ($CFG->debugdeveloper) {
|
||||
if (strpos($text, '@@PLUGINFILE@@/') !== false) {
|
||||
|
@ -61,7 +61,7 @@ if (!$course = $DB->get_record('course', array('id'=>$id))) {
|
||||
// require proper login; guest user can not change password
|
||||
if (!isloggedin() or isguestuser()) {
|
||||
if (empty($SESSION->wantsurl)) {
|
||||
$SESSION->wantsurl = $CFG->httpswwwroot.'/login/change_password.php';
|
||||
$SESSION->wantsurl = $CFG->wwwroot.'/login/change_password.php';
|
||||
}
|
||||
redirect(get_login_url());
|
||||
}
|
||||
|
@ -82,7 +82,7 @@ if (empty($token)) {
|
||||
// The session var is intentionally used only during the lifespan of one request (the redirect) and is unset above.
|
||||
if (!$tokeninsession && $_SERVER['REQUEST_METHOD'] === 'GET') {
|
||||
$SESSION->password_reset_token = $token;
|
||||
redirect($CFG->httpswwwroot . '/login/forgot_password.php');
|
||||
redirect($CFG->wwwroot . '/login/forgot_password.php');
|
||||
} else {
|
||||
// Continue with the password reset process.
|
||||
core_login_process_password_set($token);
|
||||
|
@ -33,7 +33,7 @@ $testsession = optional_param('testsession', 0, PARAM_INT); // test session work
|
||||
$anchor = optional_param('anchor', '', PARAM_RAW); // Used to restore hash anchor to wantsurl.
|
||||
|
||||
$context = context_system::instance();
|
||||
$PAGE->set_url("$CFG->httpswwwroot/login/index.php");
|
||||
$PAGE->set_url("$CFG->wwwroot/login/index.php");
|
||||
$PAGE->set_context($context);
|
||||
$PAGE->set_pagelayout('login');
|
||||
|
||||
@ -206,12 +206,12 @@ if ($frm and isset($frm->username)) { // Login WITH
|
||||
if ($userauth->can_change_password()) {
|
||||
$passwordchangeurl = $userauth->change_password_url();
|
||||
if (!$passwordchangeurl) {
|
||||
$passwordchangeurl = $CFG->httpswwwroot.'/login/change_password.php';
|
||||
$passwordchangeurl = $CFG->wwwroot.'/login/change_password.php';
|
||||
} else {
|
||||
$externalchangepassword = true;
|
||||
}
|
||||
} else {
|
||||
$passwordchangeurl = $CFG->httpswwwroot.'/login/change_password.php';
|
||||
$passwordchangeurl = $CFG->wwwroot.'/login/change_password.php';
|
||||
}
|
||||
$days2expire = $userauth->password_expire($USER->username);
|
||||
$PAGE->set_title("$site->fullname: $loginsite");
|
||||
@ -271,9 +271,9 @@ if (empty($SESSION->wantsurl)) {
|
||||
if ($referer &&
|
||||
$referer != $CFG->wwwroot &&
|
||||
$referer != $CFG->wwwroot . '/' &&
|
||||
$referer != $CFG->httpswwwroot . '/login/' &&
|
||||
strpos($referer, $CFG->httpswwwroot . '/login/?') !== 0 &&
|
||||
strpos($referer, $CFG->httpswwwroot . '/login/index.php') !== 0) { // There might be some extra params such as ?lang=.
|
||||
$referer != $CFG->wwwroot . '/login/' &&
|
||||
strpos($referer, $CFG->wwwroot . '/login/?') !== 0 &&
|
||||
strpos($referer, $CFG->wwwroot . '/login/index.php') !== 0) { // There might be some extra params such as ?lang=.
|
||||
$SESSION->wantsurl = $referer;
|
||||
}
|
||||
}
|
||||
@ -328,7 +328,7 @@ if (!empty($SESSION->loginerrormsg)) {
|
||||
if ($errormsg) {
|
||||
$SESSION->loginerrormsg = $errormsg;
|
||||
}
|
||||
redirect(new moodle_url($CFG->httpswwwroot . '/login/index.php'));
|
||||
redirect(new moodle_url($CFG->wwwroot . '/login/index.php'));
|
||||
}
|
||||
|
||||
$PAGE->set_title("$site->fullname: $loginsite");
|
||||
@ -339,8 +339,8 @@ echo $OUTPUT->header();
|
||||
if (isloggedin() and !isguestuser()) {
|
||||
// prevent logging when already logged in, we do not want them to relogin by accident because sesskey would be changed
|
||||
echo $OUTPUT->box_start();
|
||||
$logout = new single_button(new moodle_url($CFG->httpswwwroot.'/login/logout.php', array('sesskey'=>sesskey(),'loginpage'=>1)), get_string('logout'), 'post');
|
||||
$continue = new single_button(new moodle_url($CFG->httpswwwroot.'/login/index.php', array('cancel'=>1)), get_string('cancel'), 'get');
|
||||
$logout = new single_button(new moodle_url($CFG->wwwroot.'/login/logout.php', array('sesskey'=>sesskey(),'loginpage'=>1)), get_string('logout'), 'post');
|
||||
$continue = new single_button(new moodle_url('/'), get_string('cancel'), 'get');
|
||||
echo $OUTPUT->confirm(get_string('alreadyloggedin', 'error', fullname($USER)), $logout, $continue);
|
||||
echo $OUTPUT->box_end();
|
||||
} else {
|
||||
|
@ -209,7 +209,7 @@ function core_login_process_password_set($token) {
|
||||
WHERE upr.token = ?";
|
||||
$user = $DB->get_record_sql($sql, array($token));
|
||||
|
||||
$forgotpasswordurl = "{$CFG->httpswwwroot}/login/forgot_password.php";
|
||||
$forgotpasswordurl = "{$CFG->wwwroot}/login/forgot_password.php";
|
||||
if (empty($user) or ($user->timerequested < (time() - $pwresettime - DAYSECS))) {
|
||||
// There is no valid reset request record - not even a recently expired one.
|
||||
// (suspicious)
|
||||
|
@ -50,7 +50,7 @@ if (isloggedin() and !isguestuser()) {
|
||||
// Prevent signing up when already logged in.
|
||||
echo $OUTPUT->header();
|
||||
echo $OUTPUT->box_start();
|
||||
$logout = new single_button(new moodle_url($CFG->httpswwwroot . '/login/logout.php',
|
||||
$logout = new single_button(new moodle_url($CFG->wwwroot . '/login/logout.php',
|
||||
array('sesskey' => sesskey(), 'loginpage' => 1)), get_string('logout'), 'post');
|
||||
$continue = new single_button(new moodle_url('/'), get_string('cancel'), 'get');
|
||||
echo $OUTPUT->confirm(get_string('cannotsignup', 'error', fullname($USER)), $logout, $continue);
|
||||
|
@ -70,8 +70,8 @@ $module = array(
|
||||
array('modulename', 'chat'), array('beep', 'chat'), array('talk', 'chat'))
|
||||
);
|
||||
$modulecfg = array(
|
||||
'home' => $CFG->httpswwwroot.'/mod/chat/view.php?id='.$cm->id,
|
||||
'chaturl' => $CFG->httpswwwroot.'/mod/chat/gui_ajax/index.php?id='.$id,
|
||||
'home' => $CFG->wwwroot.'/mod/chat/view.php?id='.$cm->id,
|
||||
'chaturl' => $CFG->wwwroot.'/mod/chat/gui_ajax/index.php?id='.$id,
|
||||
'theme' => $theme,
|
||||
'userid' => $USER->id,
|
||||
'sid' => $chatsid,
|
||||
|
@ -2378,7 +2378,7 @@ function lti_get_launch_container($lti, $toolconfig) {
|
||||
|
||||
function lti_request_is_using_ssl() {
|
||||
global $CFG;
|
||||
return (stripos($CFG->httpswwwroot, 'https://') === 0);
|
||||
return (stripos($CFG->wwwroot, 'https://') === 0);
|
||||
}
|
||||
|
||||
function lti_ensure_url_is_https($url) {
|
||||
|
@ -73,7 +73,7 @@ $fs = get_file_storage();
|
||||
|
||||
$params = array('ctx_id' => $contextid, 'itemid' => $itemid, 'env' => $env, 'course'=>$courseid, 'maxbytes'=>$maxbytes, 'areamaxbytes'=>$areamaxbytes, 'maxfiles'=>$maxfiles, 'subdirs'=>$subdirs, 'sesskey'=>sesskey());
|
||||
$PAGE->set_url('/repository/draftfiles_manager.php', $params);
|
||||
$filepicker_url = new moodle_url($CFG->httpswwwroot."/repository/filepicker.php", $params);
|
||||
$filepicker_url = new moodle_url($CFG->wwwroot."/repository/filepicker.php", $params);
|
||||
|
||||
$params['action'] = 'browse';
|
||||
$home_url = new moodle_url('/repository/draftfiles_manager.php', $params);
|
||||
|
@ -591,7 +591,7 @@ class repository_dropbox extends repository {
|
||||
public static function get_oauth2callbackurl() {
|
||||
global $CFG;
|
||||
|
||||
return new moodle_url($CFG->httpswwwroot . '/admin/oauth2callback.php');
|
||||
return new moodle_url($CFG->wwwroot . '/admin/oauth2callback.php');
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -101,7 +101,7 @@ $home_url = new moodle_url('/repository/draftfiles_manager.php', $params);
|
||||
|
||||
$params['savepath'] = $savepath;
|
||||
$params['repo_id'] = $repo_id;
|
||||
$url = new moodle_url($CFG->httpswwwroot."/repository/filepicker.php", $params);
|
||||
$url = new moodle_url($CFG->wwwroot."/repository/filepicker.php", $params);
|
||||
$PAGE->set_url('/repository/filepicker.php', $params);
|
||||
|
||||
switch ($action) {
|
||||
@ -212,7 +212,7 @@ case 'sign':
|
||||
// TODO MDL-28482: need a better solution
|
||||
// paging_bar is not a good option because it starts page numbering from 0 and
|
||||
// repositories number pages starting from 1.
|
||||
$pagingurl = new moodle_url("$CFG->httpswwwroot/repository/filepicker.php?action=list&itemid=$itemid&ctx_id=$contextid&repo_id=$repo_id&course=$courseid&sesskey=". sesskey());
|
||||
$pagingurl = new moodle_url("$CFG->wwwroot/repository/filepicker.php?action=list&itemid=$itemid&ctx_id=$contextid&repo_id=$repo_id&course=$courseid&sesskey=". sesskey());
|
||||
if (!isset($list['perpage']) && !isset($list['total'])) {
|
||||
$list['perpage'] = 10; // instead of setting perpage&total we use number of pages, the result is the same
|
||||
}
|
||||
|
@ -56,7 +56,7 @@ if ($type === 'editor') {
|
||||
css_send_uncached_css($csscontent);
|
||||
}
|
||||
|
||||
$chunkurl = new moodle_url($CFG->httpswwwroot . '/theme/styles_debug.php', array('theme' => $themename,
|
||||
$chunkurl = new moodle_url($CFG->wwwroot . '/theme/styles_debug.php', array('theme' => $themename,
|
||||
'type' => $type, 'subtype' => $subtype, 'sheet' => $sheet, 'usesvg' => $usesvg, 'rtl' => $rtl));
|
||||
|
||||
// We need some kind of caching here because otherwise the page navigation becomes
|
||||
|
@ -44,7 +44,7 @@ if ($course->id != SITEID) {
|
||||
require_login($course);
|
||||
} else if (!isloggedin()) {
|
||||
if (empty($SESSION->wantsurl)) {
|
||||
$SESSION->wantsurl = $CFG->httpswwwroot.'/user/edit.php';
|
||||
$SESSION->wantsurl = $CFG->wwwroot.'/user/edit.php';
|
||||
}
|
||||
redirect(get_login_url());
|
||||
} else {
|
||||
|
@ -57,7 +57,7 @@ function useredit_setup_preference_page($userid, $courseid) {
|
||||
require_login($course);
|
||||
} else if (!isloggedin()) {
|
||||
if (empty($SESSION->wantsurl)) {
|
||||
$SESSION->wantsurl = $CFG->httpswwwroot.'/user/preferences.php';
|
||||
$SESSION->wantsurl = $CFG->wwwroot.'/user/preferences.php';
|
||||
}
|
||||
redirect(get_login_url());
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user