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/clone/wp-conte.../plugins/advanced.../admin/views/ad-list
File: preview-image.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Render preview information for the image ad type
[2] Fix | Delete
*
[3] Fix | Delete
* @var string $src image source URL.
[4] Fix | Delete
* @var string $alt alt attribute value.
[5] Fix | Delete
* @var string $preview_hwstring width and height information for the smaller preview icon.
[6] Fix | Delete
* @var string $tooltip_hwstring width and height information for the larger version in the tooltip.
[7] Fix | Delete
*/
[8] Fix | Delete
?>
[9] Fix | Delete
<span class="advads-ad-list-tooltip">
[10] Fix | Delete
<span class="advads-ad-list-tooltip-content">
[11] Fix | Delete
<?php
[12] Fix | Delete
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- $hwstring is not something we can escape.
[13] Fix | Delete
printf( '<img src="%s" alt="%s" %s/>', esc_url( $src ), esc_attr( $alt ), $tooltip_hwstring );
[14] Fix | Delete
?>
[15] Fix | Delete
</span>
[16] Fix | Delete
<?php
[17] Fix | Delete
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- $hwstring is not something we can escape.
[18] Fix | Delete
printf( '<img src="%s" alt="%s" %s/>', esc_url( $src ), esc_attr( $alt ), $preview_hwstring );
[19] Fix | Delete
?>
[20] Fix | Delete
</span>
[21] Fix | Delete
[22] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function