Remove prefix from file path

Should already be complete at this point.
JI-92
JI-92-path-fix
Frode Petterson 2017-03-02 10:17:16 +01:00
parent bdf60a943d
commit 179601657c
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ class H5PDefaultStorage implements \H5PFileStorage {
* @return string
*/
public function getContent($file_path) {
return file_get_contents($this->path . $file_path);
return file_get_contents($file_path);
}
/**