mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
Minor changes
This commit is contained in:
parent
9ccbad71e3
commit
e3f0a6a737
@ -98,7 +98,7 @@
|
||||
$course->enddate = $course->startdate + ($weekofseconds * $course->numsections);
|
||||
|
||||
echo "<TABLE BORDER=0 CELLPADDING=8 CELLSPACING=0 WIDTH=100%>";
|
||||
while ($weekdate <= $course->enddate) {
|
||||
while ($weekdate < $course->enddate) {
|
||||
|
||||
$nextweekdate = $weekdate + ($weekofseconds);
|
||||
|
||||
|
@ -27,7 +27,7 @@ CREATE TABLE `course` (
|
||||
`student` varchar(100) NOT NULL default 'Student',
|
||||
`guest` tinyint(1) unsigned NOT NULL default '0',
|
||||
`startdate` int(10) unsigned NOT NULL default '0',
|
||||
`numsections` int(10) unsigned NOT NULL default '0',
|
||||
`numsections` smallint(5) unsigned NOT NULL default '1',
|
||||
`marker` int(10) unsigned NOT NULL default '0',
|
||||
`timecreated` int(10) unsigned NOT NULL default '0',
|
||||
`timemodified` int(10) unsigned NOT NULL default '0',
|
||||
|
Loading…
x
Reference in New Issue
Block a user