Changeset 11486 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/functions.php
- Timestamp:
- 01/28/2022 06:18:33 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/functions.php
r11426 r11486 131 131 // Add the token to the "primary" form 132 132 var input = document.createElement( "input" ), 133 form = document.getElementsByTagName("form")[0]; 133 form = document.getElementById( "registerform" ); 134 135 if ( ! form ) { 136 form = document.querySelectorAll( "form:not(#language-switcher)" ); 137 } 134 138 135 139 input.setAttribute( "type", "hidden" );
Note: See TracChangeset
for help on using the changeset viewer.