Fix typo in the account module skeleton

This commit is contained in:
Colin Kuskie 2014-11-19 09:41:01 -08:00
parent c3f3dc0124
commit 4649297b9f

View file

@ -108,7 +108,7 @@ This method returns the templateId for the layout of your new module.
sub getLayoutTemplateId {
my $self = shift;
return $self->session->setting->get("moduleLayoutTempalteId") || $self->SUPER::getLayoutTemplateId;
return $self->session->setting->get("moduleLayoutTemplateId") || $self->SUPER::getLayoutTemplateId;
}