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/wordfenc.../views/common
File: section-title.php
<?php
[0] Fix | Delete
if (!defined('WORDFENCE_VERSION')) { exit; }
[1] Fix | Delete
/**
[2] Fix | Delete
* Expects $title (or $titleHTML) to be defined. If $helpLink and $helpLabel (or $helpLabelHTML) are defined, the help link will be shown.
[3] Fix | Delete
*
[4] Fix | Delete
* @var $title string The page title.
[5] Fix | Delete
* @var $titleHTML string The page title as raw HTML
[6] Fix | Delete
* @var $helpLink string The URL for the help link.
[7] Fix | Delete
* @var $helpLabel string The help link's text.
[8] Fix | Delete
* @var $helpLabelHTML string The help link's text as raw HTML.
[9] Fix | Delete
*/
[10] Fix | Delete
[11] Fix | Delete
if (isset($title) && !isset($titleHTML)) {
[12] Fix | Delete
$titleHTML = esc_html($title);
[13] Fix | Delete
}
[14] Fix | Delete
[15] Fix | Delete
if (isset($helpLabel) && !isset($helpLabelHTML)) {
[16] Fix | Delete
$helpLabelHTML = esc_html($helpLabel);
[17] Fix | Delete
}
[18] Fix | Delete
?>
[19] Fix | Delete
<div class="wf-section-title">
[20] Fix | Delete
<?php if (isset($showIcon) && $showIcon): ?>
[21] Fix | Delete
<div class="wordfence-lock-icon wordfence-icon32 wf-hidden-xs"></div>
[22] Fix | Delete
<?php endif; ?>
[23] Fix | Delete
<h2 class="wf-center-xs"<?php echo (isset($headerID) ? ' id="' . $headerID . '"' : ''); ?>><?php echo $titleHTML; ?></h2>
[24] Fix | Delete
<?php if (isset($helpLink) && isset($helpLabelHTML)): ?>
[25] Fix | Delete
<span class="wf-hidden-xs"><a href="<?php echo esc_attr($helpLink); ?>" target="_blank" rel="noopener noreferrer" class="wf-help-link"><?php echo $helpLabelHTML; ?><span class="screen-reader-text"> (<?php esc_html_e('opens in new tab', 'wordfence') ?>)</span></a> <i class="wf-fa wf-fa-external-link" aria-hidden="true"></i></span>
[26] Fix | Delete
<?php endif; ?>
[27] Fix | Delete
</div>
[28] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function