Skip to content

Commit

Permalink
fix migration problem with multilingual review forms pkp#1782
Browse files Browse the repository at this point in the history
  • Loading branch information
ajnyga authored and asmecher committed Jan 9, 2017
1 parent c1b5dbc commit 814eea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/install/Upgrade.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ function fixReviewForms() {
$newOptions[$key] = $option['content'];
}
$row['setting_value'] = serialize($newOptions);
$reviewFormDao->Replace('review_form_element_settings', $row, array('review_form_id', 'locale', 'setting_name'));
$reviewFormDao->Replace('review_form_element_settings', $row, array('review_form_element_id', 'locale', 'setting_name'));
$result->MoveNext();
}
$result->Close();
Expand Down

0 comments on commit 814eea3

Please sign in to comment.