비추천(deprecation) 공지사항만 있습니다. 그리고 (Opera에서만 발생하며 Firefox에서는 발생하지 않습니다. 또한 Content security policy script src를 'unsafe-eval'로 설정한 지 이미 오래되었습니다):
사이트의 Content Security Policy가 JavaScript에서 'eval’의 사용을 차단합니다`
Content Security Policy(CSP)는 공격자가 사이트에 무단 코드를 주입하는 것을 더 어렵게 만들기 위해 임의의 문자열을 JavaScript로 평가하는 것을 방지합니다.
이 문제를 해결하려면 문자열을 평가하기 위해
eval(),new Function(),setTimeout([string], ...),setInterval([string], ...)을 사용하지 않는 것이 좋습니다.반드시 사용해야 한다면:
script-src지시문에unsafe-eval을 허용된 소스로 추가하여 문자열 평가를 활성화할 수 있습니다.
감사합니다. 현재 활성화된 테스트 배너가 하나뿐이므로 여기에 게시할 수도 있습니다:
[
{
"setting": "banners",
"value": [
{
"title": "Testbanner Titel",
"message": "Testbanner Text Testbanner Text",
"date_after": "2025-11-01 12:00:00Z",
"date_before": "2025-12-01 12:00:00Z",
"dismissable": true,
"plugin_outlet": "top-notices",
"enabled_groups": [
1
]
}
]
},
{
"setting": "splide_options__above_site_header",
"value": "{ \"autoHeight\": true, \"height\": \"8rem\", \"arrows\": false, \"autoplay\": true, \"direction\": \"ttb\", \"focus\": \"center\", \"gap\": 0, \"type\": \"loop\" }"
},
{
"setting": "splide_options__below_site_header",
"value": "{ \"autoHeight\": true, \"height\": \"8rem\", \"arrows\": false, \"autoplay\": true, \"direction\": \"ttb\", \"focus\": \"center\", \"gap\": 0, \"type\": \"loop\" }"
},
{
"setting": "splide_options__top_notices",
"value": "{ \"autoHeight\": true, \"height\": \"8rem\", \"arrows\": false, \"autoplay\": true, \"direction\": \"ttb\", \"focus\": \"center\", \"gap\": 0, \"type\": \"loop\" }"
}
]
시작일과 종료일을 제거하고 다른 두 개의 플러그인 아웃렛을 제거한 경우에도 시도해 보았습니다. 또한 사이트 로그인 없이 Firefox에서 효과를 확인하기 위해 Administrators 대신 everyone을 사용해보았습니다(여기서 설정은 그룹 1이어야 합니다). 그리고 splide 옵션을 건드리지 않았습니다.