79341504

Date: 2025-01-09 06:09:02
Score: 1.5
Natty:
Report link

The other way this can happen is if CSP is invoked with:

header("Content-Security-Policy: default-src 'self'; img-src 'self'; etc.

In the above case, the arrow images are not allowed to load. It is fixed by additionally accepting images from jquery:

header("Content-Security-Policy: default-src 'self'; img-src 'self' https://code.jquery.com; etc.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: user2380187