Skip to content

Commit

Permalink
Fix new style array into old style array
Browse files Browse the repository at this point in the history
  • Loading branch information
icc committed Nov 8, 2018
1 parent 85b278b commit f7f2479
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions h5p.classes.php
Expand Up @@ -4362,7 +4362,7 @@ public function getMetadataSemantics() {
(object) array(
'type' => 'optgroup',
'label' => $this->h5pF->t('Creative Commons'),
'options' => [
'options' => array(
(object) array(
'value' => 'CC BY',
'label' => $this->h5pF->t('Attribution (CC BY)'),
Expand Down Expand Up @@ -4401,7 +4401,7 @@ public function getMetadataSemantics() {
'value' => 'CC PDM',
'label' => $this->h5pF->t('Public Domain Mark (PDM)')
),
]
)
),
(object) array(
'value' => 'GNU GPL',
Expand Down

0 comments on commit f7f2479

Please sign in to comment.