From 41b68b9e0f26612b346c6fa87bdad4d0159f074b Mon Sep 17 00:00:00 2001 From: Jonathan Hedstrom Date: Tue, 3 Dec 2019 14:49:48 -0800 Subject: [PATCH] Fix development file path to semantics.json. --- h5p-development.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/h5p-development.class.php b/h5p-development.class.php index cae5433..5b90ac9 100644 --- a/h5p-development.class.php +++ b/h5p-development.class.php @@ -153,7 +153,7 @@ class H5PDevelopment { if (isset($this->libraries[$library]) === FALSE) { return NULL; } - return $this->getFileContents($this->filesPath . $this->libraries[$library]['path'] . '/semantics.json'); + return $this->getFileContents($this->filesPath . '/' . $this->libraries[$library]['path'] . '/semantics.json'); } /**