diff --git a/docs/upgrades/templates-7.4.0/PBtmpl0000000000000029.tmpl b/docs/upgrades/templates-7.4.0/PBtmpl0000000000000029.tmpl
index 43b07672e..97ff12d13 100644
--- a/docs/upgrades/templates-7.4.0/PBtmpl0000000000000029.tmpl
+++ b/docs/upgrades/templates-7.4.0/PBtmpl0000000000000029.tmpl
@@ -62,6 +62,12 @@
+
+
+ |
+ |
+
+
|
diff --git a/docs/upgrades/upgrade_7.3.21-7.4.0.pl b/docs/upgrades/upgrade_7.3.21-7.4.0.pl
index acd3881d7..d1fe76533 100644
--- a/docs/upgrades/upgrade_7.3.21-7.4.0.pl
+++ b/docs/upgrades/upgrade_7.3.21-7.4.0.pl
@@ -32,11 +32,23 @@ addPrivateMessaging($session);
addNewsletter($session);
addHttpProxyUrlPatternFilter($session);
addCanStartThreadToCS($session);
+addPostCaptchaToCS($session);
finish($session); # this line required
#-------------------------------------------------
+sub addPostCaptchaToCS {
+ my $session = shift;
+ print "\tAdding useCaptcha setting to Collaboration Systems..." unless ($quiet);
+
+ $session->db->write("ALTER TABLE Collaboration add column useCaptcha integer NOT NULL default 0");
+
+ print "OK\n";
+ return;
+}
+#-------------------------------------------------
+
sub addCanStartThreadToCS {
my $session = shift;