Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.6, 1.6.1
-
Fix Version/s: 1.6.2
-
Component/s: Other
-
Labels:None
-
Environment:LAMP. PHP 5.1.4 - using acp accelerator. MySQL 4.1.20
-
Database:MySQL
-
URL:/user/edit.php?id=xxx&course=1
-
Affected Branches:MOODLE_16_STABLE
-
Fixed Branches:MOODLE_16_STABLE
Description
This only seems to occur with sites using an SSL certificate. Go to https://<yoursite>/user/edit.php?id=xxx&course1 (with your site address and user ID in the appropiate places).
If I view the source of that page it shows:
<body class="https:-moodle.nulc.ac.uk-user course-1" id="https:-moodle.nulc.ac.uk-user-edit">
Rather than the expected:
<body class="user course-1" id="user-edit">
If I replace "https" with "http" the body tag renders as expected.
This has been seen on two seperate servers, one running 1.6.1+ and the other 1.6 Beta 5.
Hi!
Could you try adding:
//HTTPS is potentially required in this page
httpsrequired();
to /user/edit.php around line 21