- Issue created by @dieterholvoet
The following notice is displayed after the CSP header is built:
Notice: Uninitialized string offset: 0 in Drupal\csp\Csp::Drupal\csp\{closure}() (line 515 of modules/contrib/csp/src/Csp.php).
Drupal\csp\Csp::Drupal\csp\{closure}('')
array_filter(Array, Object) (Line: 520)
Drupal\csp\Csp::reduceAttrSourceList(Array) (Line: 430)
Drupal\csp\Csp->getHeaderValue() (Line: 181)
Drupal\csp\EventSubscriber\ResponseCspSubscriber->onKernelResponse(Object, 'kernel.response', Object)
After some debugging I discovered it's caused by a library provided by the extlink module:
extlink.settings:
js:
/extlink/settings.js: { type: external, preprocess: false }
dependencies:
- core/drupalSettings
It's marked as external, but the path points to a route provided by the module. I'm pretty sure this behaviour of using the site url if an external library has a relative path is documented, but since it's there and being used by contrib modules we should probably account for it.
Enable the extlink module, enable a CSP policy and visit any public page.
Account for external library urls possibly being relative.
Active
2.0
Code