From ef00e707adc092777f96f0561b06fbdf11f30746 Mon Sep 17 00:00:00 2001 From: Svein-Tore Griff With Date: Fri, 8 Feb 2013 04:38:27 +0100 Subject: [PATCH] Working proof of concept for editorLibraries --- h5p.classes.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/h5p.classes.php b/h5p.classes.php index 28af314..a3b1344 100644 --- a/h5p.classes.php +++ b/h5p.classes.php @@ -378,6 +378,9 @@ class h5pValidator { if (isset($library['dynamicDependencies'])) { array_merge($missing, $this->getMissingDependencies($library['dynamicDependencies'], $libraries)); } + if (isset($library['editorDependencies'])) { + array_merge($missing, $this->getMissingDependencies($library['editorDependencies'], $libraries)); + } } return $missing; }