From 8938401ce51001e3af3840c53142250e8e298db0 Mon Sep 17 00:00:00 2001 From: Greg Weber Date: Wed, 24 Aug 2011 11:07:40 -0700 Subject: [PATCH] fix CPP error --- yesod/scaffold/Foundation.hs.cg | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/yesod/scaffold/Foundation.hs.cg b/yesod/scaffold/Foundation.hs.cg index 863cfca4..a91602a8 100644 --- a/yesod/scaffold/Foundation.hs.cg +++ b/yesod/scaffold/Foundation.hs.cg @@ -144,7 +144,7 @@ instance YesodAuth ~sitearg~ where , authEmail ] - +-- Sends off your mail. Requires sendmail in production! deliver :: ~sitearg~ -> L.ByteString -> IO () #ifdef PRODUCTION deliver _ = sendmail @@ -152,7 +152,6 @@ deliver _ = sendmail deliver y = logLazyText (getLogger y) . Data.Text.Lazy.Encoding.decodeUtf8 #endif - instance YesodAuthEmail ~sitearg~ where type AuthEmailId ~sitearg~ = EmailId @@ -178,7 +177,7 @@ instance YesodAuthEmail ~sitearg~ where , partContent = Data.Text.Lazy.Encoding.encodeUtf8 [stext| Please confirm your email address by clicking on the link below. -#{verurl} + #{verurl} Thank you |]