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/wpforms-.../template.../admin/payments
File: hidden-field.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Display a hidden field for the purpose of form submission.
[2] Fix | Delete
*
[3] Fix | Delete
* @since 1.8.4
[4] Fix | Delete
*
[5] Fix | Delete
* @var string $name Name of the hidden field.
[6] Fix | Delete
* @var array $value Value of the hidden field.
[7] Fix | Delete
*/
[8] Fix | Delete
[9] Fix | Delete
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
[10] Fix | Delete
[11] Fix | Delete
// Leave early if no field name or value is provided.
[12] Fix | Delete
if ( empty( $name ) || empty( $value ) ) {
[13] Fix | Delete
return;
[14] Fix | Delete
}
[15] Fix | Delete
[16] Fix | Delete
?>
[17] Fix | Delete
[18] Fix | Delete
<input
[19] Fix | Delete
type="hidden"
[20] Fix | Delete
name="<?php echo esc_attr( $name ); ?>"
[21] Fix | Delete
value="<?php echo esc_attr( $value ); ?>"
[22] Fix | Delete
/>
[23] Fix | Delete
[24] Fix | Delete
<?php
[25] Fix | Delete
/* Omit closing PHP tag at the end of PHP files to avoid "headers already sent" issues. */
[26] Fix | Delete
[27] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function