diff options
author | Jens Hörnlein <jens.hoernlein@googlemail.com> | 2015-02-02 00:36:37 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-02-02 00:36:37 +0100 |
commit | 60394c74c92775303094a1069917d53169ab2fcd (patch) | |
tree | da81cc12a632e62aa0f4e04b0bbff46410ca5746 /module/plugins/hooks/Captcha9Kw.py | |
parent | [JustPremium] Cleanup (diff) | |
download | pyload-60394c74c92775303094a1069917d53169ab2fcd.tar.xz |
Captcha9Kw should be initialized activated false
Diffstat (limited to 'module/plugins/hooks/Captcha9Kw.py')
-rw-r--r-- | module/plugins/hooks/Captcha9Kw.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/module/plugins/hooks/Captcha9Kw.py b/module/plugins/hooks/Captcha9Kw.py index 342f3fee8..1031ef224 100644 --- a/module/plugins/hooks/Captcha9Kw.py +++ b/module/plugins/hooks/Captcha9Kw.py @@ -16,10 +16,9 @@ from module.plugins.Hook import Hook, threaded class Captcha9Kw(Hook): __name__ = "Captcha9Kw" __type__ = "hook" - __version__ = "0.27" + __version__ = "0.28" - __config__ = [("activated" , "bool" , "Activated" , True ), - ("ssl" , "bool" , "Use HTTPS" , True ), + __config__ = [("ssl" , "bool" , "Use HTTPS" , True ), ("force" , "bool" , "Force captcha resolving even if client is connected" , True ), ("confirm" , "bool" , "Confirm Captcha (cost +6 credits)" , False ), ("captchaperhour", "int" , "Captcha per hour" , "9999" ), |