Skip to content

Commit

Permalink
Merge pull request #2532 from Alex-Jordan/selected-sets-exported
Browse files Browse the repository at this point in the history
correct the confirmation message when selecting sets for export
  • Loading branch information
drgrice1 authored Aug 20, 2024
2 parents 948f26b + 7739265 commit c187434
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 c187434

Please sign in to comment.