mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-01-02 16:35:40 +00:00
Fix #194
This commit is contained in:
parent
6fa8ae37f0
commit
3efafecb30
@ -73,7 +73,10 @@ def inject_default_domain_table_size_setting():
|
|||||||
@app.context_processor
|
@app.context_processor
|
||||||
def inject_auto_ptr_setting():
|
def inject_auto_ptr_setting():
|
||||||
auto_ptr_setting = Setting.query.filter(Setting.name == 'auto_ptr').first()
|
auto_ptr_setting = Setting.query.filter(Setting.name == 'auto_ptr').first()
|
||||||
return dict(auto_ptr_setting=strtobool(auto_ptr_setting.value))
|
if auto_ptr_setting is None:
|
||||||
|
return dict(auto_ptr_setting=False)
|
||||||
|
else:
|
||||||
|
return dict(auto_ptr_setting=strtobool(auto_ptr_setting.value))
|
||||||
|
|
||||||
|
|
||||||
# START USER AUTHENTICATION HANDLER
|
# START USER AUTHENTICATION HANDLER
|
||||||
|
Loading…
Reference in New Issue
Block a user