| 1 | ################################################################################ |
1 | ################################################################################ |
| 2 | # WeBWorK Online Homework Delivery System |
2 | # WeBWorK Online Homework Delivery System |
| 3 | # Copyright © 2000-2007 The WeBWorK Project, http://openwebwork.sf.net/ |
3 | # Copyright © 2000-2007 The WeBWorK Project, http://openwebwork.sf.net/ |
| 4 | # $CVSHeader: webwork2/lib/WeBWorK/DB/Utils.pm,v 1.23 2007/03/02 23:09:49 sh002i Exp $ |
4 | # $CVSHeader: webwork2/lib/WeBWorK/DB/Utils.pm,v 1.24 2007/08/13 22:59:56 sh002i Exp $ |
| 5 | # |
5 | # |
| 6 | # This program is free software; you can redistribute it and/or modify it under |
6 | # This program is free software; you can redistribute it and/or modify it under |
| 7 | # the terms of either: (a) the GNU General Public License as published by the |
7 | # the terms of either: (a) the GNU General Public License as published by the |
| 8 | # Free Software Foundation; either version 2, or (at your option) any later |
8 | # Free Software Foundation; either version 2, or (at your option) any later |
| 9 | # version, or (b) the "Artistic License" which comes with this package. |
9 | # version, or (b) the "Artistic License" which comes with this package. |
| … | |
… | |
| 65 | $userProblem->status(0.0); |
65 | $userProblem->status(0.0); |
| 66 | $userProblem->attempted(0); |
66 | $userProblem->attempted(0); |
| 67 | $userProblem->num_correct(0); |
67 | $userProblem->num_correct(0); |
| 68 | $userProblem->num_incorrect(0); |
68 | $userProblem->num_incorrect(0); |
| 69 | $userProblem->problem_seed($seed); |
69 | $userProblem->problem_seed($seed); |
|
|
70 | $userProblem->sub_status(0.0); |
| 70 | |
71 | |
| 71 | return $userProblem; |
72 | return $userProblem; |
| 72 | } |
73 | } |
| 73 | |
74 | |
| 74 | ################################################################################ |
75 | ################################################################################ |