From 4649297b9f3869a0a7a455c86ba9dd4cd25b138e Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Wed, 19 Nov 2014 09:41:01 -0800 Subject: [PATCH] Fix typo in the account module skeleton --- lib/WebGUI/Account/_NewModule.skeleton | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Account/_NewModule.skeleton b/lib/WebGUI/Account/_NewModule.skeleton index bc3dcddc0..b572398d8 100644 --- a/lib/WebGUI/Account/_NewModule.skeleton +++ b/lib/WebGUI/Account/_NewModule.skeleton @@ -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; }