Subject: | syntax error in Syntax Code |
This:
sub setup {
my $c = shift;
$c->start_mode('form_display');
$c->run_modes([qw/
form_display
form_process
/);
}
Should probably be:
sub setup {
my $c = shift;
$c->start_mode('form_display');
$c->run_modes([qw/
form_display
form_process
/]);
}
The code is correct in the, "setup" method section, though.