WPIntell

Source evidence

This string with esc_html_e also has echo

Easy Updates Manager · support · 2026-03-15T07:32:00+00:00

neutralsentiment
mediumseverity
0.53relevance
3replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 15 rows with source links

33.3% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

10 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
itapress resolved
Hello. This string with esc_html_e also has echo : https://plugins.trac.wordpress.org/browser/stops-core-theme-and-plugin-updates/tags/9.0.20/includes/MPSUM_Admin_Core.php#L322 Thanks. Do you mean like this: https://snipboard.io/qiSNG2.jpg You can use echo esc_html($text); to escape content inside HTML tags (e.g., inside a <div> or <p>) In this case we are using it inside of the <p> tag Hello. Thanks for the reply. I appreciate the clarification. However, my issue is with how you use the esc_html_e function in this line. The line I highlighted is: <p class="description"> <?php echo esc_html_e('e-mails can be comma separated', 'stops-core-theme-and-plugin-updates'); ?> </p> This leads to a redundant echo , since esc_html_e is designed to print the content directly, so there is no need to use echo . Thanks again. Yes, I see it. I will pass this onto our development team

Comments

3 shown
vupdraft 2026-03-16T20:27:00+00:00

Do you mean like this: https://snipboard.io/qiSNG2.jpg You can use echo esc_html($text); to escape content inside HTML tags (e.g., inside a <div> or <p>) In this case we are using it inside of the <p> tag

itapress 2026-03-16T20:45:00+00:00

Hello. Thanks for the reply. I appreciate the clarification. However, my issue is with how you use the esc_html_e function in this line. The line I highlighted is: <p class="description"> <?php echo esc_html_e('e-mails can be comma separated', 'stops-core-theme-and-plugin-updates'); ?> </p> This leads to a redundant echo , since esc_html_e is designed to print the content directly, so there is no need to use echo . Thanks again.

vupdraft 2026-03-17T17:47:00+00:00

Yes, I see it. I will pass this onto our development team