diff --git a/h5p.classes.php b/h5p.classes.php index fbdc99fd..6eb3c3ec 100644 --- a/h5p.classes.php +++ b/h5p.classes.php @@ -2432,7 +2432,7 @@ public function getDependenciesFiles($dependencies, $prefix = '') { // Using content dependencies foreach ($dependencies as $dependency) { if (isset($dependency['path']) === FALSE) { - $dependency['path'] = $this->getDependencyPath($dependency); + $dependency['path'] = 'libraries/' . H5PCore::libraryToString($dependency, TRUE); $dependency['preloadedJs'] = explode(',', $dependency['preloadedJs']); $dependency['preloadedCss'] = explode(',', $dependency['preloadedCss']); } @@ -2452,16 +2452,6 @@ public function getDependenciesFiles($dependencies, $prefix = '') { return $files; } - /** - * Get the path to the dependency. - * - * @param array $dependency - * @return string - */ - protected function getDependencyPath(array $dependency): string { - return 'libraries/' . H5PCore::libraryToString($dependency, TRUE); - } - private static function getDependenciesHash(&$dependencies) { // Build hash of dependencies $toHash = array();