You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The comments display functionality in /modules/tp-comments/functions.php does not check the approval status of pingbacks and trackbacks before displaying them, which allows spammy pingbacks to be injected straight into the posts of anyone using it.
Suggest moving if ( $comment->comment_approved == '1' ) : from off line 29 (comments case) to before the switch statement, and the corresponding endif; from line 63 to after endswitch;
The text was updated successfully, but these errors were encountered:
The comments display functionality in /modules/tp-comments/functions.php does not check the approval status of pingbacks and trackbacks before displaying them, which allows spammy pingbacks to be injected straight into the posts of anyone using it.
Suggest moving
if ( $comment->comment_approved == '1' ) :
from off line 29 (comments case) to before theswitch
statement, and the correspondingendif;
from line 63 to afterendswitch;
The text was updated successfully, but these errors were encountered: