Changes between Initial Version and Version 2 of Ticket #55230
- Timestamp:
- 02/22/2022 11:03:27 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #55230
-
Property
Component
changed from
Administration
toLogin and Registration
-
Property
Milestone
changed from
Awaiting Review
to5.9.2
-
Property
Component
changed from
-
Ticket #55230 – Description
initial v2 1 1 The release 5.9.1 introduced a bug in script-loader.php with this new method: 2 2 {{{ 3 3 /** 4 4 * Render the SVG filters supplied by theme.json. … … 29 29 } 30 30 } 31 31 }}} 32 32 This method echos characters to the response stream before all "headers" and "cookies" have been pushed. This prevents the wp-login.php form to work properly because every calls to the "header" or "cookie" method then generates this warning: "Cannot modify header information – headers already sent by...”. This prevents the authentication cookie to be sent to the browser which breaks the authentication mechanism. To fix this issue, I had to add a "return;" in the new "wp_global_styles_render_svg_filters" method.