forked from indymedia/epicyon
Registration is boolean
parent
4b5ddf1d48
commit
90da6de43b
|
@ -4511,7 +4511,10 @@ def runDaemon(registration: bool, \
|
||||||
httpd.systemLanguage=systemLanguage
|
httpd.systemLanguage=systemLanguage
|
||||||
httpd.translate=loadJson(translationsFile)
|
httpd.translate=loadJson(translationsFile)
|
||||||
|
|
||||||
httpd.registration=registration
|
if registration=='open':
|
||||||
|
httpd.registration=True
|
||||||
|
else:
|
||||||
|
httpd.registration=False
|
||||||
httpd.outboxThread={}
|
httpd.outboxThread={}
|
||||||
httpd.newPostThread={}
|
httpd.newPostThread={}
|
||||||
httpd.projectVersion=projectVersion
|
httpd.projectVersion=projectVersion
|
||||||
|
|
Loading…
Reference in New Issue