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: status-circular.php
<?php
[0] Fix | Delete
if (!defined('WORDFENCE_VERSION')) { exit; }
[1] Fix | Delete
/**
[2] Fix | Delete
* Expects $id, $diameter (in pixels), $percentage (as decimal value), $inactiveColor, and $activeColor to be defined.
[3] Fix | Delete
* $animateIn is optional and defaults to true.
[4] Fix | Delete
* $strokeWidth is option and defaults to 3 (pixels).
[5] Fix | Delete
*
[6] Fix | Delete
* @var string $id
[7] Fix | Delete
*/
[8] Fix | Delete
[9] Fix | Delete
if (!isset($animateIn)) { $animateIn = true; }
[10] Fix | Delete
if (!isset($strokeWidth)) { $strokeWidth = 3; }
[11] Fix | Delete
[12] Fix | Delete
$strokeWidth = intval($strokeWidth);
[13] Fix | Delete
$diameter = intval($diameter);
[14] Fix | Delete
[15] Fix | Delete
?>
[16] Fix | Delete
<div id="<?php echo esc_attr($id); ?>" class="wf-status-circular"></div>
[17] Fix | Delete
<script type="application/javascript">
[18] Fix | Delete
(function($) {
[19] Fix | Delete
$('#<?php echo esc_attr($id); ?>').wfCircularProgress({
[20] Fix | Delete
endPercent: <?php echo $percentage; ?>,
[21] Fix | Delete
color: '<?php echo esc_attr($activeColor); ?>',
[22] Fix | Delete
inactiveColor: '<?php echo esc_attr($inactiveColor); ?>',
[23] Fix | Delete
strokeWidth: <?php echo $strokeWidth; ?>,
[24] Fix | Delete
diameter: <?php echo $diameter; ?>,
[25] Fix | Delete
});
[26] Fix | Delete
})(jQuery);
[27] Fix | Delete
</script>
[28] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function