diff --git a/libraries.module b/libraries.module index 0c994fa2623b4d89cdba0787b3e6bb7c9a88dab0..7028d2f9777d097f0814f2a75730a931c5b145db 100644 --- a/libraries.module +++ b/libraries.module @@ -368,7 +368,7 @@ function libraries_detect_dependencies(&$library, $version = NULL, $variant = NU // Remove the version string from the dependency, so libraries_load() can // load the libraries directly. - $dependency_string = $dependency_info['name']; + $dependency_string = $info['name']; } } } diff --git a/src/ExternalLibrary/Exception/LibraryTypeNotFoundException.php b/src/ExternalLibrary/Exception/LibraryTypeNotFoundException.php index b5655bba09a626a1d7b73a60b2971a1fc19c5a83..4b382837f0ca308a3557b445d762b37a76776155 100644 --- a/src/ExternalLibrary/Exception/LibraryTypeNotFoundException.php +++ b/src/ExternalLibrary/Exception/LibraryTypeNotFoundException.php @@ -8,7 +8,7 @@ use Drupal\libraries\ExternalLibrary\Utility\LibraryIdAccessorInterface; /** * Provides an exception for a library definition without a type declaration. */ -class LibraryTypeNotFoundException extends \RuntimeException implements LibraryAccessorInterface { +class LibraryTypeNotFoundException extends \RuntimeException implements LibraryIdAccessorInterface { use LibraryIdAccessorTrait; diff --git a/tests/example/example_info_file.libraries.info.yml b/tests/example/example_info_file.libraries.info.yml index 5aa97f3f14944f36c3020bd8ad596c98b033fca9..b52e3408fc54f62455d642e2b63ea8d78c73932e 100644 --- a/tests/example/example_info_file.libraries.info.yml +++ b/tests/example/example_info_file.libraries.info.yml @@ -1,3 +1,2 @@ # This is an example info file of a library used for testing purposes. name: Example info file -type: module \ No newline at end of file