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/content-.../inc/freemius/template...
File: email.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* @package Freemius
[2] Fix | Delete
* @copyright Copyright (c) 2015, Freemius, Inc.
[3] Fix | Delete
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
[4] Fix | Delete
* @since 1.1.1
[5] Fix | Delete
*/
[6] Fix | Delete
[7] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) {
[8] Fix | Delete
exit;
[9] Fix | Delete
}
[10] Fix | Delete
[11] Fix | Delete
/**
[12] Fix | Delete
* @var array $VARS
[13] Fix | Delete
*/
[14] Fix | Delete
$sections = $VARS['sections'];
[15] Fix | Delete
?>
[16] Fix | Delete
<table>
[17] Fix | Delete
<?php
[18] Fix | Delete
foreach ( $sections as $section_id => $section ) {
[19] Fix | Delete
?>
[20] Fix | Delete
<thead>
[21] Fix | Delete
<tr><th colspan="2" style="text-align: left; background: #333; color: #fff; padding: 5px;"><?php echo esc_html($section['title']) ?></th></tr>
[22] Fix | Delete
</thead>
[23] Fix | Delete
<tbody>
[24] Fix | Delete
<?php
[25] Fix | Delete
foreach ( $section['rows'] as $row_id => $row ) {
[26] Fix | Delete
$col_count = count( $row );
[27] Fix | Delete
?>
[28] Fix | Delete
<tr>
[29] Fix | Delete
<?php
[30] Fix | Delete
if ( 1 === $col_count ) { ?>
[31] Fix | Delete
<td style="vertical-align: top;" colspan="2"><?php echo $row[0] ?></td>
[32] Fix | Delete
<?php
[33] Fix | Delete
} else { ?>
[34] Fix | Delete
<td style="vertical-align: top;"><b><?php echo esc_html($row[0]) ?>:</b></td>
[35] Fix | Delete
<td><?php echo $row[1]; ?></td>
[36] Fix | Delete
<?php
[37] Fix | Delete
}
[38] Fix | Delete
?>
[39] Fix | Delete
</tr>
[40] Fix | Delete
<?php
[41] Fix | Delete
}
[42] Fix | Delete
?>
[43] Fix | Delete
</tbody>
[44] Fix | Delete
<?php
[45] Fix | Delete
}
[46] Fix | Delete
?>
[47] Fix | Delete
</table>
[48] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function