diff --git a/yesod-core/Yesod/Core/Handler.hs b/yesod-core/Yesod/Core/Handler.hs index 8bd149f7..7c24adc8 100644 --- a/yesod-core/Yesod/Core/Handler.hs +++ b/yesod-core/Yesod/Core/Handler.hs @@ -722,7 +722,7 @@ newIdent = do x <- get let i' = ghsIdent x + 1 put x { ghsIdent = i' } - return $ T.pack $ 'h' : show i' + return $ T.pack $ "hident" ++ show i' -- | Redirect to a POST resource. --