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
/home/sportsfe.../httpdocs/wp-conte.../plugins/wordpres.../admin/views/form
File: select.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* WPSEO plugin file.
[2] Fix | Delete
*
[3] Fix | Delete
* @package WPSEO\Admin
[4] Fix | Delete
*
[5] Fix | Delete
* @uses string $attributes Additional attributes for the select.
[6] Fix | Delete
* @uses string $name Value for the select name attribute.
[7] Fix | Delete
* @uses string $id ID attribute for the select.
[8] Fix | Delete
* @uses array $options Array with the options to show.
[9] Fix | Delete
* @uses string $selected The current set options.
[10] Fix | Delete
*/
[11] Fix | Delete
[12] Fix | Delete
if ( ! defined( 'WPSEO_VERSION' ) ) {
[13] Fix | Delete
header( 'Status: 403 Forbidden' );
[14] Fix | Delete
header( 'HTTP/1.1 403 Forbidden' );
[15] Fix | Delete
exit();
[16] Fix | Delete
}
[17] Fix | Delete
[18] Fix | Delete
?>
[19] Fix | Delete
<?php /* phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Reason: $attributes is properly escaped in parse_attribute via get_attributes in class-yoast-input-select.php. */ ?>
[20] Fix | Delete
<select <?php echo $attributes; ?>name="<?php echo esc_attr( $name ); ?>" id="<?php echo esc_attr( $id ); ?>">
[21] Fix | Delete
<?php foreach ( $options as $option_attribute_value => $option_html_value ) : ?>
[22] Fix | Delete
<option value="<?php echo esc_attr( $option_attribute_value ); ?>"<?php echo selected( $selected, $option_attribute_value, false ); ?>><?php echo esc_html( $option_html_value ); ?></option>
[23] Fix | Delete
<?php endforeach; ?>
[24] Fix | Delete
</select>
[25] Fix | Delete
[26] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function