Hide/show individual activities in any section

Code submitted by Eloy Lafuente (thanks!) for 1.0.8 ... I hand-merged it
into 1.0.9.
This commit is contained in:
moodler
2003-04-14 15:11:09 +00:00
parent 5a25f84d25
commit 1acfbce5b6
16 changed files with 202 additions and 24 deletions

View File

@ -46,6 +46,10 @@ function main_upgrade($oldversion=0) {
userid int8 NOT NULL default '0'
)");
}
if ($oldversion < 2003041400) {
table_column("course_modules", "", "visible", "integer", "1", "unsigned", "1", "not null", "score");
}
return true;
}