Invalid argument supplied for foreach() in cors_init() line 143

Created on 18 July 2019, over 5 years ago
Updated 26 March 2025, 11 days ago

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);
          }
πŸ› Bug report
Status

RTBC

Version

1.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States jstoller

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024