-
Bug
-
Resolution: Fixed
-
Minor
-
3.7.2, 3.10
-
MOODLE_310_STABLE, MOODLE_37_STABLE
-
MOODLE_310_STABLE, MOODLE_39_STABLE
-
MDL-67460-master_profile_secure -
When an ICQ number or a Yahoo ID is provided for a user, a non-secure link is added to the user's profile page. The target site for each link has an SSL certificate, so these links should be generated using HTTPS rather than HTTP.
REPLICATION STEPS
- Create a new user or edit an existing user.
- In the optional section, enter values in the ICQ number and Yahoo ID fields. Valid values are not necessary, anything will do to demonstrate the issue.
- View the user's profile (/user/profile.php?id=xxxx).
- Use the browser's developer tools to inspect the ICQ number and Yahoo ID links.
OBSERVED BEHAVIOR:
Both links are HTTP
<a href="http://web.icq.com/wwp?uin=123456789">
<a href="http://edit.yahoo.com/config/send_webmsg?.target=bluejello&.src=pg"
EXPECTED BEHAVIOR:
Both links are HTTPS
<a href="https://web.icq.com/wwp?uin=123456789">
<a href="https://edit.yahoo.com/config/send_webmsg?.target=bluejello&.src=pg"
- has been marked as being related by
-
MDL-70310 Yahoo icon is not showing at user profile page
- Closed