Bug-fix: Bad path to Drupal's vendor/autoload.php file.
authorAllen Shaw <allen@emphanos.com>
Sun, 31 Jan 2016 23:23:31 +0000 (17:23 -0600)
committerAllen Shaw <allen@emphanos.com>
Sun, 31 Jan 2016 23:23:31 +0000 (17:23 -0600)
CRM/Utils/System/Drupal8.php

index d626e9cb3dede7ce949a9b317ff7530555072dba..1bd2a419da2eb5093217b81ae7164684b63caa2d 100644 (file)
@@ -450,7 +450,7 @@ class CRM_Utils_System_Drupal8 extends CRM_Utils_System_DrupalBase {
     chdir($root);
 
     // Create a mock $request object
-    $autoloader = require_once $root . '/core/vendor/autoload.php';
+    $autoloader = require_once $root . '/vendor/autoload.php';
     // @Todo: do we need to handle case where $_SERVER has no HTTP_HOST key, ie. when run via cli?
     $request = new \Symfony\Component\HttpFoundation\Request(array(), array(), array(), array(), array(), $_SERVER);