Merge branch 'fix-for-empty-string-language-in-h5p-json'

namespaces
Svein-Tore Griff With 2014-11-11 11:14:03 +01:00
commit 6e17c540fc
1 changed files with 1 additions and 1 deletions

View File

@ -1433,7 +1433,7 @@ Class H5PExport {
'title' => $content['title'],
// TODO - stop using 'und', this is not the preferred way.
// Either remove language from the json if not existing, or use "language": null
'language' => isset($content['language']) ? $content['language'] : 'und',
'language' => (isset($content['language']) && strlen(trim($content['language'])) !== 0) ? $content['language'] : 'und',
'mainLibrary' => $content['library']['name'],
'embedTypes' => $embedTypes,
);