diff options
author | louise <louise> | 2009-09-03 13:36:47 +0000 |
---|---|---|
committer | louise <louise> | 2009-09-03 13:36:47 +0000 |
commit | 07911d4a2ce3e657f3d8a6ac47d18a1a4fa2e437 (patch) | |
tree | d920bbd10eaf27a37489c918d42e8e243b3b0bf4 /web/tms-signup.cgi | |
parent | c099781324cfb2a973a34fa5ca2e8a6011ed0ce2 (diff) |
Let emails contain correct urls in the case of subdomains, change error style from id to class as can appear more than once
Diffstat (limited to 'web/tms-signup.cgi')
-rwxr-xr-x | web/tms-signup.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/tms-signup.cgi b/web/tms-signup.cgi index ceaf2e779..12cd47fb3 100755 --- a/web/tms-signup.cgi +++ b/web/tms-signup.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2008 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: tms-signup.cgi,v 1.3 2008-10-07 16:27:35 matthew Exp $ +# $Id: tms-signup.cgi,v 1.4 2009-09-03 13:36:48 louise Exp $ use strict; use Standard; @@ -53,7 +53,7 @@ sub tms_updates_form { my %input = map { $_ => $q->param($_) || '' } @vars; my $out = ''; if (@errors) { - $out .= '<ul id="error"><li>' . join('</li><li>', @errors) . '</li></ul>'; + $out .= '<ul class="error"><li>' . join('</li><li>', @errors) . '</li></ul>'; } $out .= CrossSell::display_tms_form(%input); return $out; |