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/questionnaire.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/questionnaire.cgi')
-rwxr-xr-x | web/questionnaire.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/questionnaire.cgi b/web/questionnaire.cgi index be411168d..f06719fe6 100755 --- a/web/questionnaire.cgi +++ b/web/questionnaire.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: questionnaire.cgi,v 1.40 2009-07-10 16:10:22 matthew Exp $ +# $Id: questionnaire.cgi,v 1.41 2009-09-03 13:36:48 louise Exp $ use strict; use Standard; @@ -238,7 +238,7 @@ EOF $out .= ' ' . _('Please take a look at the updates that have been left.') if $updates; $out .= '</p>'; 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 .= '<p>'; $out .= _('An update marked this problem as fixed.') . ' ' if $problem->{state} eq 'fixed'; |