1
0
forked from GitHub/gf-core

Fix type error in fastcgi server.

I forgot to fix this after I copied the modified FastCGIUtils from morpho-server.
This commit is contained in:
bjorn
2008-09-10 07:09:44 +00:00
parent e7106b6181
commit b9066feacc

View File

@@ -25,7 +25,7 @@ main = do initFastCGI
loopFastCGI (handleErrors (handleCGIErrors (fcgiMain r)))
fcgiMain :: DataRef PGF -> CGI CGIResult
fcgiMain ref = getData PGF.readPGF ref grammarFile >>= cgiMain
fcgiMain ref = getData (liftIO . PGF.readPGF) ref grammarFile >>= cgiMain
cgiMain :: PGF -> CGI CGIResult
cgiMain pgf =