Skip to content

Commit

Permalink
Fix type cast
Browse files Browse the repository at this point in the history
  • Loading branch information
grandgeorg committed May 16, 2022
1 parent dcc0330 commit 2dd2f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omeka/plugins_lf/ExhibitBuilder/models/Api/Exhibit.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function getRepresentation(Omeka_Record_AbstractRecord $record)
$representation['credits'] = $record->credits;
$representation['featured'] = (bool) $record->featured;
$representation['public'] = (bool) $record->public;
$representation['exhibit_type'] = (bool) $record->exhibit_type;
$representation['exhibit_type'] = $record->exhibit_type;
$representation['theme'] = $record->theme;
$representation['institutions'] = unserialize($record->institutions);
$representation['imprint'] = unserialize($record->imprint);
Expand Down

0 comments on commit 2dd2f01

Please sign in to comment.