From 2dcb2b262c4ac41a5df031f79af879224ab0009d Mon Sep 17 00:00:00 2001 From: skodak <skodak> Date: Fri, 6 Apr 2007 07:51:18 +0000 Subject: [PATCH] MDL-9227 Inconsistent HTTPS for profile edit page; merged from MOODLE_17_STABLE --- admin/user.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/admin/user.php b/admin/user.php index 9a16a17dcb..b0bb566f73 100644 --- a/admin/user.php +++ b/admin/user.php @@ -63,6 +63,12 @@ $strsearch = get_string('search'); $strshowallusers = get_string('showallusers'); + if (empty($CFG->loginhttps)) { + $securewwwroot = $CFG->wwwroot; + } else { + $securewwwroot = str_replace('http:','https:',$CFG->wwwroot); + } + admin_externalpage_print_header($adminroot); if ($confirmuser and confirm_sesskey()) { @@ -297,11 +303,6 @@ } $mainadmin = get_admin(); - if(empty($CFG->loginhttps)) { - $securewwwroot = $CFG->wwwroot; - } else { - $securewwwroot = str_replace('http:','https:',$CFG->wwwroot); - } $table->head = array ("$firstname / $lastname", $email, $city, $country, $lastaccess, "", "", ""); $table->align = array ("left", "left", "left", "left", "left", "center", "center", "center"); @@ -408,7 +409,7 @@ echo "</td></tr></table>"; if (has_capability('moodle/user:create', $sitecontext)) { - print_heading('<a href="../user/editadvanced.php?id=-1">'.get_string('addnewuser').'</a>'); + print_heading('<a href="'.$securewwwroot.'/user/editadvanced.php?id=-1">'.get_string('addnewuser').'</a>'); } if (!empty($table)) { print_table($table); @@ -416,7 +417,7 @@ "user.php?sort=$sort&dir=$dir&perpage=$perpage". "&firstinitial=$firstinitial&lastinitial=$lastinitial&search=".urlencode(stripslashes($search))."&"); if (has_capability('moodle/user:create', $sitecontext)) { - print_heading('<a href="../user/editadvanced.php?id=-1">'.get_string('addnewuser').'</a>'); + print_heading('<a href="'.$securewwwroot.'/user/editadvanced.php?id=-1">'.get_string('addnewuser').'</a>'); } } -- 2.39.5