Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / config / src / ConfigSubscriber.php
index 7e4c51ddac37f36d3869b514b1ab595316da90e8..779bab67ddcbb71c8dbb567f9842c0811eb29fa4 100644 (file)
@@ -18,6 +18,11 @@ class ConfigSubscriber extends ConfigImportValidateEventSubscriberBase {
    *   The config import event.
    */
   public function onConfigImporterValidate(ConfigImporterEvent $event) {
+    // Make sure config syncs performed via the Config UI don't break, but
+    // don't worry about syncs initiated via the command line.
+    if (PHP_SAPI === 'cli') {
+      return;
+    }
     $importer = $event->getConfigImporter();
     $core_extension = $importer->getStorageComparer()->getSourceStorage()->read('core.extension');
     if (!isset($core_extension['module']['config'])) {