- π¦πΊAustralia elc
This is patched off code that is not even in the module - it looks like it's from one of the patches in #3036892: invalid service error when passing parameters like returnto β .
I got this warning twice per user login.
Warning: Invalid argument supplied for foreach() in Drupal\Component\Utility\NestedArray::mergeDeepArray() (line 327 of /var/www/my-he/drupal/core/lib/Drupal/Component/Utility/NestedArray.php)
I found the cause in /var/www/my-he/drupal/modules/contrib/cas_server/src/Controller/UserActionController.php(211): Drupal\Core\Url->toString()
I changed the code to this and it silenced the warnings.
if (!empty($this->configHelper->serviceParams)) {
$url = Url::fromUri($service, ['query' => $this->configHelper->serviceParams])->toString();
}
else {
$url = Url::fromUri($service)->toString();
}
Closed: cannot reproduce
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
This is patched off code that is not even in the module - it looks like it's from one of the patches in #3036892: invalid service error when passing parameters like returnto β .