diff --git a/config/pagetexts.php b/config/pagetexts.php index a97c540..f0f613e 100644 --- a/config/pagetexts.php +++ b/config/pagetexts.php @@ -124,10 +124,10 @@ echo "
".i18n("Page Text Name")." | ".i18n("Last Update")." |
---|---|
".i18n("Page Text Description")." | ".i18n("Last Update")." |
textname\">$r->textname | "; + echo "|
textname\">$r->textdescription | "; if($r->lastupdate=="0000-00-00 00:00:00") $lastupdate="Never"; else $lastupdate=$r->lastupdate; echo "$lastupdate | "; diff --git a/db/db.code.version.txt b/db/db.code.version.txt index 58c9bdf..194b81c 100644 --- a/db/db.code.version.txt +++ b/db/db.code.version.txt @@ -1 +1 @@ -111 +112 diff --git a/db/db.update.112.sql b/db/db.update.112.sql new file mode 100644 index 0000000..6cea2f9 --- /dev/null +++ b/db/db.update.112.sql @@ -0,0 +1,5 @@ +ALTER TABLE `pagetext` ADD `textdescription` VARCHAR( 255 ) NOT NULL AFTER `textname` ; +UPDATE `pagetext` SET `textdescription`='Participant registration main page instructions' WHERE textname='register_participants_main_instructions'; +UPDATE `pagetext` SET `textdescription`='Judge registration instructions for Invite-Only mode' WHERE textname='register_judges_invite'; +UPDATE `pagetext` SET `textdescription`='Volunteer registration instructions for Invite-Only mode' WHERE textname='register_volunteer_invite'; +UPDATE `pagetext` SET `textdescription`='School access login page' WHERE textname='schoolaccess';