[Aimmath-commit] moodle/mod/math_assignment config.html,1.3,1.4
Brought to you by:
gustav_delius,
npstrick
|
From: <ma...@us...> - 2003-09-19 20:12:34
|
Update of /cvsroot/aimmath/moodle/mod/math_assignment
In directory sc8-pr-cvs1:/tmp/cvs-serv22173/mod/math_assignment
Modified Files:
config.html
Log Message:
Minor bug fix
Index: config.html
===================================================================
RCS file: /cvsroot/aimmath/moodle/mod/math_assignment/config.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** config.html 18 Sep 2003 23:57:57 -0000 1.3
--- config.html 19 Sep 2003 11:58:27 -0000 1.4
***************
*** 72,78 ****
// get aim server
unset($options);
! $servers = get_records("math_assignment_server", "", "", "name ASC");
! foreach ($servers as $server) {
! $option[$server->id] = $server->name;
}
--- 72,79 ----
// get aim server
unset($options);
! if ($servers = get_records("math_assignment_server", "", "", "name ASC")) {
! foreach ($servers as $server) {
! $option[$server->id] = $server->name;
! }
}
|