- πΊπ¦Ukraine sickness29
refactoring patch and leaving open as this is still used
When configuring CORS I was getting this error on every page load. I was able to fix it by changing this...
foreach ($values as $value) {
drupal_add_http_header($header, $value, TRUE);
}
...to this...
foreach ((array) $values as $value) {
drupal_add_http_header($header, $value, TRUE);
}
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
refactoring patch and leaving open as this is still used