improper JavaScript tag placement in HTML code
-
I had someone report that my plugin was finding problem in this file …/controllers/twofa/mo2fa_inline_registration.php.
The problem that I found was that you have JavaScript tags after the closing </body> tag. This is improper HTML coding, nothing should ever go between the </body> and </html> tags. While this kind of sloppy placement of <script> tags is usually forgiven by most browsers, and you code will likely work as intended in most cases, it is still improper and usually only malicious scripts are injected in the wrong place like that. I am giving you this information so that you might move your scripts to inside the BODY in your next release.
I found this issue on lines 207, 343, 628, 830, 943, 1076, and 1208.
The page I need help with: [log in to see the link]
- The topic ‘improper JavaScript tag placement in HTML code’ is closed to new replies.