diff options
Diffstat (limited to 'web/about.cgi')
-rwxr-xr-x | web/about.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/about.cgi b/web/about.cgi index baba299e1..a302eb3f0 100755 --- a/web/about.cgi +++ b/web/about.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: about.cgi,v 1.2 2006-09-25 18:39:54 matthew Exp $ +# $Id: about.cgi,v 1.3 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, 'About'); + print Page::header($q, title=>'About'); print about_page(); print Page::footer(); } |