- Jun 13, 2018
-
-
Ismael Posada Trobo authored
-
Ismael Posada Trobo authored
Applying the latest release causes some websites (not all) to show 'the website encountered an unexpected error' with no further information. The watchdog shows: php RuntimeException: An invalid implementation cern_integration_form_alter was added by hook_module_implements_alter() in Drupal\Core\Extension\ModuleHandler->buildImplementationInfo() (line error https://dev-d8-rwmanos.web.cern.ch/ Although this additional if condition is not in the documentation example https://api.drupal.org/api/drupal/core%21lib%21Drupal%21Core%21Extension%21module.api.php/function/hook_module_implements_alter/8.5.x An example implementing it uses it, for instance, https://api.drupal.org/api/drupal/core%21modules%21system%21tests%21modules%21common_test%21common_test.module/8.5.x
-
Ismael Posada Trobo authored
-
Ismael Posada Trobo authored
-
Ismael Posada Trobo authored
-
- Apr 27, 2018
-
-
Romanos Dodopoulos authored
-
Romanos Dodopoulos authored
Related to DRUPAL-266
-
- Feb 28, 2018
-
-
Romanos Dodopoulos authored
We wanted to hide Drupal core from the update manager so people are not notified when there is a Drupal core security update. This works well if there is no local module. It just prints the following warning: ``` Warning: Invalid argument supplied for foreach() in template_preprocess_update_report() (line 44 of /drupal/8.4.5/core/modules/update/update.report.inc) #0 /drupal/8.4.5/core/includes/boot ``` This is the case when using, for instance, the update_notifications_disable module which the only thing that it does is: ``` function update_notifications_disable_update_projects_alter(&$projects) { $projects = []; } ``` Unfortunately, by only disabling centrally managed modules, when there is a local module installed there is the following error: ``` Notice: Undefined index: drupal in update_requirements() (line 37 of /drupal/8.4.5/core/modules/update/update.install) #0 /drupal/8.4.5/core/includes/bootstrap.inc(566): _drupal_error_hand ``` That error causes the email notification to be sent. For D8 it does not state that there is a problem with checking the available updates like it does for D7. So users get emails that there are available updates although there is none. We need to revert that unset until we find a better solution.
-
- Feb 13, 2018
-
-
Romanos Dodopoulos authored
Remove centrally managed themes from the update manager. Related to DRUPAL-141.
-
- Dec 18, 2017
-
-
Romanos Dodopoulos authored
from the update manager. Related to DRUPAL-141.
-