Make WordPress Core

Changes between Initial Version and Version 13 of Ticket #57336


Ignore:
Timestamp:
10/13/2023 09:39:32 PM (12 months ago)
Author:
rajinsharwar
Comment:

Hi @nicolefurlan @oglekler, updated the title and description for the ticket. :) Let me know if I missed anything.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #57336

    • Property Focuses multisite added; privacy removed
    • Property Component changed from Login and Registration to Networks and Sites
    • Property Summary changed from Sanitize url and title missing to Escape missing URLs and HTML element content in wp-activate.php
    • Property Owner changed from rafiq91 to rajinsharwar
    • Property Milestone changed from Awaiting Review to 6.4
    • Property Keywords has-testing-info added
  • Ticket #57336 – Description

    initial v13  
    1 1. The login title in wp-login.php is not sanitized properly https://prnt.sc/MJLEeeUWf7BE
    2 2. Network site URL is also not properly sanitized https://prnt.sc/6rFVD0ClxbO-
     1In the wp-activate.php file,
     2
     31. We have some unescaped instances of the "network_site_url()" function.
     42. We have some unescaped URLs being used.
     53. We have some unescaped HTML element content.
     6
     7This ticket escapes the missing unescaped instances.