Viewing File differences…
-
After a scan, I notice a couple of core files that were modified relatively recently and that I didn’t make the change.
below I show the changed lines of code…
Original version:
<form name=”registerform” id=”registerform” action=”<?php echo esc_url( site_url( ‘wp-login.php?action=register’, ‘login_post’ ) ); ?>” method=”post” novalidate=”novalidate”>
<form name=”loginform” id=”loginform” action=”<?php echo esc_url( site_url( ‘wp-login.php’, ‘login_post’ ) ); ?>” method=”post”>
Modified version:
<form name=”registerform” id=”registerform” action=”<?php echo esc_url( wp_registration_url() ); ?>” method=”post” novalidate=”novalidate”>
<form name=”loginform” id=”loginform” action=”<?php echo esc_url( wp_login_url() ); ?>” method=”post”>
- The topic ‘Viewing File differences…’ is closed to new replies.