diff options
-rwxr-xr-x | web/index.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/index.cgi b/web/index.cgi index 66680e603..c908b97a6 100755 --- a/web/index.cgi +++ b/web/index.cgi @@ -712,7 +712,7 @@ photo of the problem if you have one), etc.')); $vars{errors} = '<ul class="error"><li>' . join('</li><li>', @errors) . '</li></ul>'; } - my $anon = ($input{anonymous}) ? ' checked' : ($input{title} ? '' : ' checked'); + $vars{anon} = ($input{anonymous}) ? ' checked' : ($input{title} ? '' : ' checked'); $vars{form_heading} = $q->h2(_('Empty property details form')) if $q->{site} eq 'emptyhomes'; $vars{subject_label} = _('Subject:'); |