Remove the https since there are some servers that doesn't support it

pull/4/head Drupal-7.x-1.9
Svein-Tore Griff With 2015-09-22 17:58:55 +02:00
parent 46183a3a2e
commit 1c99d7ed61
1 changed files with 1 additions and 1 deletions

View File

@ -2377,7 +2377,7 @@ class H5PCore {
$platformInfo['uuid'] = $this->h5pF->getOption('site_uuid', '');
// Adding random string to GET to be sure nothing is cached
$random = substr(str_shuffle("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, 5);
$json = $this->h5pF->fetchExternalData('https://h5p.org/libraries-metadata.json?api=1&platform=' . urlencode(json_encode($platformInfo)) . '&x=' . urlencode($random));
$json = $this->h5pF->fetchExternalData('http://h5p.org/libraries-metadata.json?api=1&platform=' . urlencode(json_encode($platformInfo)) . '&x=' . urlencode($random));
if ($json !== NULL) {
$json = json_decode($json);
if (isset($json->libraries)) {