aboutsummaryrefslogtreecommitdiffstats
path: root/web/faq.cgi
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2011-06-01 17:29:16 +0100
committerStruan Donald <struan@exo.org.uk>2011-06-01 17:29:16 +0100
commitb3746b6d37d7214c016cf9f39bcec8847b379721 (patch)
tree57daf0e0580fed8afc9befe6a82cea6f23a872eb /web/faq.cgi
parenta2d9fe2659a1723824c58d7e3d663d1725bcab56 (diff)
parent2e4241ef11e600dcdf898ca1542f865c0972e4bc (diff)
Merge branch 'migrate_to_catalyst' of ssh://git.mysociety.org/data/git/public/fixmystreet into migrate_to_catalyst
Diffstat (limited to 'web/faq.cgi')
-rwxr-xr-xweb/faq.cgi24
1 files changed, 0 insertions, 24 deletions
diff --git a/web/faq.cgi b/web/faq.cgi
deleted file mode 100755
index 4d9c7413a..000000000
--- a/web/faq.cgi
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/perl -w -I../perllib
-
-# faq.cgi:
-# FAQ page for FixMyStreet
-#
-# Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved.
-# Email: matthew@mysociety.org. WWW: http://www.mysociety.org
-#
-# $Id: faq.cgi,v 1.42 2009-07-10 16:10:22 matthew Exp $
-
-use strict;
-use Standard -db;
-use mySociety::Locale;
-
-my $lastmodified = (stat $0)[9];
-sub main {
- my $q = shift;
- print Page::header($q, title=>_('Frequently Asked Questions'));
- my $lang = $mySociety::Locale::lang;
- print Page::template_include("faq-$lang", $q, Page::template_root($q));
- print Page::footer($q);
-}
-Page::do_fastcgi(\&main, $lastmodified);
-