Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../public_h...
File: wp-login.php
wp_enqueue_script( 'user-profile' );
[1500] Fix | Delete
?>
[1501] Fix | Delete
[1502] Fix | Delete
<form name="loginform" id="loginform" action="<?php echo esc_url( site_url( 'wp-login.php', 'login_post' ) ); ?>" method="post">
[1503] Fix | Delete
<p>
[1504] Fix | Delete
<label for="user_login"><?php _e( 'Username or Email Address' ); ?></label>
[1505] Fix | Delete
<input type="text" name="log" id="user_login"<?php echo $aria_describedby; ?> class="input" value="<?php echo esc_attr( $user_login ); ?>" size="20" autocapitalize="off" autocomplete="username" required="required" />
[1506] Fix | Delete
</p>
[1507] Fix | Delete
[1508] Fix | Delete
<div class="user-pass-wrap">
[1509] Fix | Delete
<label for="user_pass"><?php _e( 'Password' ); ?></label>
[1510] Fix | Delete
<div class="wp-pwd">
[1511] Fix | Delete
<input type="password" name="pwd" id="user_pass"<?php echo $aria_describedby; ?> class="input password-input" value="" size="20" autocomplete="current-password" spellcheck="false" required="required" />
[1512] Fix | Delete
<button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Show password' ); ?>">
[1513] Fix | Delete
<span class="dashicons dashicons-visibility" aria-hidden="true"></span>
[1514] Fix | Delete
</button>
[1515] Fix | Delete
</div>
[1516] Fix | Delete
</div>
[1517] Fix | Delete
<?php
[1518] Fix | Delete
[1519] Fix | Delete
/**
[1520] Fix | Delete
* Fires following the 'Password' field in the login form.
[1521] Fix | Delete
*
[1522] Fix | Delete
* @since 2.1.0
[1523] Fix | Delete
*/
[1524] Fix | Delete
do_action( 'login_form' );
[1525] Fix | Delete
[1526] Fix | Delete
?>
[1527] Fix | Delete
<p class="forgetmenot"><input name="rememberme" type="checkbox" id="rememberme" value="forever" <?php checked( $rememberme ); ?> /> <label for="rememberme"><?php esc_html_e( 'Remember Me' ); ?></label></p>
[1528] Fix | Delete
<p class="submit">
[1529] Fix | Delete
<input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e( 'Log In' ); ?>" />
[1530] Fix | Delete
<?php
[1531] Fix | Delete
[1532] Fix | Delete
if ( $interim_login ) {
[1533] Fix | Delete
?>
[1534] Fix | Delete
<input type="hidden" name="interim-login" value="1" />
[1535] Fix | Delete
<?php
[1536] Fix | Delete
} else {
[1537] Fix | Delete
?>
[1538] Fix | Delete
<input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
[1539] Fix | Delete
<?php
[1540] Fix | Delete
}
[1541] Fix | Delete
[1542] Fix | Delete
if ( $customize_login ) {
[1543] Fix | Delete
?>
[1544] Fix | Delete
<input type="hidden" name="customize-login" value="1" />
[1545] Fix | Delete
<?php
[1546] Fix | Delete
}
[1547] Fix | Delete
[1548] Fix | Delete
?>
[1549] Fix | Delete
<input type="hidden" name="testcookie" value="1" />
[1550] Fix | Delete
</p>
[1551] Fix | Delete
</form>
[1552] Fix | Delete
[1553] Fix | Delete
<?php
[1554] Fix | Delete
[1555] Fix | Delete
if ( ! $interim_login ) {
[1556] Fix | Delete
?>
[1557] Fix | Delete
<p id="nav">
[1558] Fix | Delete
<?php
[1559] Fix | Delete
[1560] Fix | Delete
if ( get_option( 'users_can_register' ) ) {
[1561] Fix | Delete
$registration_url = sprintf( '<a class="wp-login-register" href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
[1562] Fix | Delete
[1563] Fix | Delete
/** This filter is documented in wp-includes/general-template.php */
[1564] Fix | Delete
echo apply_filters( 'register', $registration_url );
[1565] Fix | Delete
[1566] Fix | Delete
echo esc_html( $login_link_separator );
[1567] Fix | Delete
}
[1568] Fix | Delete
[1569] Fix | Delete
$html_link = sprintf( '<a class="wp-login-lost-password" href="%s">%s</a>', esc_url( wp_lostpassword_url() ), __( 'Lost your password?' ) );
[1570] Fix | Delete
[1571] Fix | Delete
/**
[1572] Fix | Delete
* Filters the link that allows the user to reset the lost password.
[1573] Fix | Delete
*
[1574] Fix | Delete
* @since 6.1.0
[1575] Fix | Delete
*
[1576] Fix | Delete
* @param string $html_link HTML link to the lost password form.
[1577] Fix | Delete
*/
[1578] Fix | Delete
echo apply_filters( 'lost_password_html_link', $html_link );
[1579] Fix | Delete
[1580] Fix | Delete
?>
[1581] Fix | Delete
</p>
[1582] Fix | Delete
<?php
[1583] Fix | Delete
}
[1584] Fix | Delete
[1585] Fix | Delete
$login_script = 'function wp_attempt_focus() {';
[1586] Fix | Delete
$login_script .= 'setTimeout( function() {';
[1587] Fix | Delete
$login_script .= 'try {';
[1588] Fix | Delete
[1589] Fix | Delete
if ( $user_login ) {
[1590] Fix | Delete
$login_script .= 'd = document.getElementById( "user_pass" ); d.value = "";';
[1591] Fix | Delete
} else {
[1592] Fix | Delete
$login_script .= 'd = document.getElementById( "user_login" );';
[1593] Fix | Delete
[1594] Fix | Delete
if ( $errors->get_error_code() === 'invalid_username' ) {
[1595] Fix | Delete
$login_script .= 'd.value = "";';
[1596] Fix | Delete
}
[1597] Fix | Delete
}
[1598] Fix | Delete
[1599] Fix | Delete
$login_script .= 'd.focus(); d.select();';
[1600] Fix | Delete
$login_script .= '} catch( er ) {}';
[1601] Fix | Delete
$login_script .= '}, 200);';
[1602] Fix | Delete
$login_script .= "}\n"; // End of wp_attempt_focus().
[1603] Fix | Delete
[1604] Fix | Delete
/**
[1605] Fix | Delete
* Filters whether to print the call to `wp_attempt_focus()` on the login screen.
[1606] Fix | Delete
*
[1607] Fix | Delete
* @since 4.8.0
[1608] Fix | Delete
*
[1609] Fix | Delete
* @param bool $print Whether to print the function call. Default true.
[1610] Fix | Delete
*/
[1611] Fix | Delete
if ( apply_filters( 'enable_login_autofocus', true ) && ! $error ) {
[1612] Fix | Delete
$login_script .= "wp_attempt_focus();\n";
[1613] Fix | Delete
}
[1614] Fix | Delete
[1615] Fix | Delete
// Run `wpOnload()` if defined.
[1616] Fix | Delete
$login_script .= "if ( typeof wpOnload === 'function' ) { wpOnload() }";
[1617] Fix | Delete
[1618] Fix | Delete
wp_print_inline_script_tag( $login_script );
[1619] Fix | Delete
[1620] Fix | Delete
if ( $interim_login ) {
[1621] Fix | Delete
ob_start();
[1622] Fix | Delete
?>
[1623] Fix | Delete
<script>
[1624] Fix | Delete
( function() {
[1625] Fix | Delete
try {
[1626] Fix | Delete
var i, links = document.getElementsByTagName( 'a' );
[1627] Fix | Delete
for ( i in links ) {
[1628] Fix | Delete
if ( links[i].href ) {
[1629] Fix | Delete
links[i].target = '_blank';
[1630] Fix | Delete
links[i].rel = 'noopener';
[1631] Fix | Delete
}
[1632] Fix | Delete
}
[1633] Fix | Delete
} catch( er ) {}
[1634] Fix | Delete
}());
[1635] Fix | Delete
</script>
[1636] Fix | Delete
<?php
[1637] Fix | Delete
wp_print_inline_script_tag( wp_remove_surrounding_empty_script_tags( ob_get_clean() ) );
[1638] Fix | Delete
}
[1639] Fix | Delete
[1640] Fix | Delete
login_footer();
[1641] Fix | Delete
break;
[1642] Fix | Delete
} // End action switch.
[1643] Fix | Delete
[1644] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function