Skip to content

Commit

Permalink
Merge pull request #2534 from Alex-Jordan/hotfix/selected-sets-exported
Browse files Browse the repository at this point in the history
correct the confirmation message when selecting sets for export (hotfix for #2532)
  • Loading branch information
drgrice1 committed Aug 20, 2024
2 parents 6fdc8d9 + 785f83a commit 99a8946
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/WeBWorK/ContentGenerator/Instructor/ProblemSetList.pm
Original file line number Diff line number Diff line change
Expand Up @@ -573,8 +573,8 @@ sub export_handler ($c) {
$c->{exportMode} = 1;

return $scope eq 'all'
? (1, $c->maketext('All sets were exported.'))
: (1, $c->maketext('Selected sets were exported.'));
? (1, $c->maketext('All sets have been marked for export.'))
: (1, $c->maketext('Selected sets were marked for export.'));
}

sub cancel_export_handler ($c) {
Expand Down

0 comments on commit 99a8946

Please sign in to comment.