Merge pull request #731 from andrewthad/master
Fix starting field number
This commit is contained in:
commit
c8f7e34b2f
@ -185,7 +185,7 @@ runFormGeneric :: Monad m
|
|||||||
-> [Text]
|
-> [Text]
|
||||||
-> Maybe (Env, FileEnv)
|
-> Maybe (Env, FileEnv)
|
||||||
-> m (a, Enctype)
|
-> m (a, Enctype)
|
||||||
runFormGeneric form site langs env = evalRWST form (env, site, langs) (IntSingle 1)
|
runFormGeneric form site langs env = evalRWST form (env, site, langs) (IntSingle 0)
|
||||||
|
|
||||||
-- | This function is used to both initially render a form and to later extract
|
-- | This function is used to both initially render a form and to later extract
|
||||||
-- results from it. Note that, due to CSRF protection and a few other issues,
|
-- results from it. Note that, due to CSRF protection and a few other issues,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user