WeBWorK Main Forum

Which source code file must modify to make exams appear ABOVE homeworks in the list?

Re: Which source code file must modify to make exams appear ABOVE homeworks in the list?

by Gavin LaRose -
Number of replies: 0
Hi Christian,

It's in lib/WeBWorK/ContentGenerator/ProblemSets.pm, lines 248--259. If you reverse @nonGWsets and @gwSets in line 259, so that it reads
@sets = (@gwSets, @nonGWsets);
instead of
@sets = (@nonGWsets, @gwSets);

That should resolve the issue.

Gavin