Added JS template field for JavaScript if needed

This commit is contained in:
moodler 2006-08-17 09:02:56 +00:00
parent f9e2f481df
commit 8ac4971405
7 changed files with 22 additions and 9 deletions

View file

@ -67,6 +67,11 @@ function data_upgrade($oldversion) {
if ($oldversion < 2006052400) {
table_column('data','','rsstitletemplate','text','','','','not null','rsstemplate');
}
if ($oldversion < 2006081700) {
table_column('data', '', 'jstemplate', 'text', '', '', '', 'not null', 'csstemplate');
}
return true;
}