Update of /cvsroot/aimmath/moodle/mod/aim_quiz
In directory sc8-pr-cvs1:/tmp/cvs-serv15530/mod/aim_quiz
Modified Files:
lib.php mod.html
Log Message:
minor changes
Index: lib.php
===================================================================
RCS file: /cvsroot/aimmath/moodle/mod/aim_quiz/lib.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** lib.php 2 Sep 2003 00:40:24 -0000 1.5
--- lib.php 2 Sep 2003 12:51:23 -0000 1.6
***************
*** 162,166 ****
else
echo "<OPTION";
! echo " value=\"{$record['id']}\">" . htmlspecialchars("{$record['subject']} on {$record['server']}") . "</OPTION>";
}
return true;
--- 162,166 ----
else
echo "<OPTION";
! echo " value=\"{$record['id']}\">" . htmlspecialchars("{$record['subject']}") . "</OPTION>";
}
return true;
Index: mod.html
===================================================================
RCS file: /cvsroot/aimmath/moodle/mod/aim_quiz/mod.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** mod.html 2 Sep 2003 00:40:24 -0000 1.2
--- mod.html 2 Sep 2003 12:51:23 -0000 1.3
***************
*** 8,12 ****
/*
* Variables specific to this module are:
! * name, server, subject, quiz, grade.
* We check that these are setup here.
*/
--- 8,12 ----
/*
* Variables specific to this module are:
! * name, problem_sheet, solution_sheet, timedue, server, subject, quiz, grade.
* We check that these are setup here.
*/
***************
*** 30,34 ****
}
if (!isset($form->timedue)) {
! $form->timedue = "";
}
// Now we set the defaults
--- 30,34 ----
}
if (!isset($form->timedue)) {
! $form->timedue = 0;
}
// Now we set the defaults
***************
*** 111,115 ****
<TR valign=top>
! <TD align=right><P><B><?php echo "$strsubject / $straimserver"; ?>:</B></P></TD>
<TD>
<SELECT name="subject">
--- 111,115 ----
<TR valign=top>
! <TD align=right><P><B><?php echo "$strsubject"; ?>:</B></P></TD>
<TD>
<SELECT name="subject">
***************
*** 122,126 ****
$newreturn = "update=$update";
if (!empty($return)) {
! $newreturn .= "&return=$return";
}
}
--- 122,126 ----
$newreturn = "update=$update";
if (!empty($return)) {
! $newreturn .= "&return=$return";
}
}
|