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/wp-super.../partials
File: tracking_parameters.php
<div class="wpsc-card">
[0] Fix | Delete
<?php
[1] Fix | Delete
echo '<a name="trackingparameters"></a><fieldset class="options"><h4>' . __( 'Tracking Parameters', 'wp-super-cache' ) . '</h4>';
[2] Fix | Delete
echo '<form name="edit_tracking_parameters" action="' . esc_url_raw( add_query_arg( 'tab', 'settings', $admin_url ) . '#trackingparameters' ) . '" method="post">';
[3] Fix | Delete
echo "<p>" . __( 'Tracking parameters to ignore when caching. Visitors from Facebook, Twitter and elsewhere to your website will go to a URL with tracking parameters added. This setting allows the plugin to ignore those parameters and show an already cached page. Any actual tracking by Google Analytics or other Javascript based code should still work as the URL of the page is not modified.', 'wp-super-cache' ) . "</p>\n";
[4] Fix | Delete
echo '<textarea name="tracking_parameters" cols="20" rows="10" style="width: 50%; font-size: 12px;" class="code">';
[5] Fix | Delete
foreach ( $wpsc_tracking_parameters as $parameter) {
[6] Fix | Delete
echo esc_html( $parameter ) . "\n";
[7] Fix | Delete
}
[8] Fix | Delete
echo '</textarea> ';
[9] Fix | Delete
echo "<p><label><input type='checkbox' name='wpsc_ignore_tracking_parameters' value='1' " . checked( 1, $wpsc_ignore_tracking_parameters, false ) . " /> " . __( 'Enable', 'wp-super-cache' ) . "</label></p>";
[10] Fix | Delete
echo '<div class="submit"><input class="button-primary" type="submit" ' . SUBMITDISABLED . 'value="' . __( 'Save', 'wp-super-cache' ) . '" /></div>';
[11] Fix | Delete
wp_nonce_field('wp-cache');
[12] Fix | Delete
echo "</form>\n";
[13] Fix | Delete
?>
[14] Fix | Delete
</div>
[15] Fix | Delete
[16] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function