Skip to content

Commit

Permalink
Resolves #1633
Browse files Browse the repository at this point in the history
  • Loading branch information
collectiveaccess committed Oct 18, 2024
1 parent fcfdafd commit 80c4170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/ca_data_exporters.php
Original file line number Diff line number Diff line change
Expand Up @@ -2359,7 +2359,7 @@ public static function loadExporterFromFile($source_file, &$errors, $options=nul
foreach($mapping as $mapping_id => $info) {
$item_settings = [];

if (is_array($info['options'])) {
if (is_array($info) && is_array($info['options'])) {
foreach($info['options'] as $k => $v) {
switch($k) {
case 'replacement_values':
Expand Down

0 comments on commit 80c4170

Please sign in to comment.