diff options
author | Struan Donald <struan@exo.org.uk> | 2011-05-24 17:41:48 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-05-24 17:41:48 +0100 |
commit | 02de04c365b8d7e8323e556b6258c1c92ba672e6 (patch) | |
tree | 6d057fa6064cce7c42bff28f2d2c27c0fa48eb65 /perllib/FixMyStreet/App/Controller/Questionnaire.pm | |
parent | 75508655346c12cb56c3e2ae521ed8919f228a9e (diff) |
if the person who created the problem is marking it as fixed show
them a questionnaire directly ( no submission yet )
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Questionnaire.pm')
-rwxr-xr-x | perllib/FixMyStreet/App/Controller/Questionnaire.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Questionnaire.pm b/perllib/FixMyStreet/App/Controller/Questionnaire.pm index c5258e7d0..8b804e421 100755 --- a/perllib/FixMyStreet/App/Controller/Questionnaire.pm +++ b/perllib/FixMyStreet/App/Controller/Questionnaire.pm @@ -215,6 +215,14 @@ sub display : Private { $c->stash->{cobrand_form_elements} = $c->cobrand->form_elements('questionnaireForm'); } +sub creator_fixed : Private { + my ( $self, $c ) = @_; + + $c->stash->{template} = 'questionnaire/creator_fixed.html'; + + return 1; +} + =head1 AUTHOR Matthew Somerville |