With multi-domain Drupal 7 (7.73) installation not configure settings for one of them.
The front page crash with attached error.
It seems a operand error, concat array with +=
File: sites/all/modules/eu_cookie_compliance/eu_cookie_compliance.module
line 638: -- $popup_settings += array(
Replace by:
$popup_settings2 = array(
'consent_storage_method' => 'do_not_store',
'enable_save_preferences_button' => NULL,
'show_disagree_button' => TRUE,
'withdraw_button_on_info_popup' => NULL,
);
$popup_settings = array_merge($popup_settings, $popup_settings2);
Related links:
https://www.php.net/manual/es/function.array-merge.php
Review code.
Fixed
1.36
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.