diff options
author | matthew <matthew> | 2007-06-01 14:24:41 +0000 |
---|---|---|
committer | matthew <matthew> | 2007-06-01 14:24:41 +0000 |
commit | dc088c7b3efc9e28b0afc6b8be79d963000e26a9 (patch) | |
tree | 4147bd6acecd148679733e5c12b5b9f8eb952838 /web/faq.cgi | |
parent | f8517cbec53ec61bbce5cdf00dc03fbec2546ead (diff) |
Put title in params.
Diffstat (limited to 'web/faq.cgi')
-rwxr-xr-x | web/faq.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/faq.cgi b/web/faq.cgi index 19b7e0379..859a6d6ab 100755 --- a/web/faq.cgi +++ b/web/faq.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: faq.cgi,v 1.19 2007-05-15 15:12:22 matthew Exp $ +# $Id: faq.cgi,v 1.20 2007-06-01 14:24:41 matthew Exp $ use strict; require 5.8.0; @@ -20,7 +20,7 @@ use Page; # Main code for index.cgi sub main { my $q = shift; - print Page::header($q, _('FAQ')); + print Page::header($q, title=>_('FAQ')); print faq($q); print Page::footer(); } |