mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 22:50:26 +00:00
Fix #194
This commit is contained in:
parent
6fa8ae37f0
commit
3efafecb30
@ -73,6 +73,9 @@ def inject_default_domain_table_size_setting():
|
||||
@app.context_processor
|
||||
def inject_auto_ptr_setting():
|
||||
auto_ptr_setting = Setting.query.filter(Setting.name == 'auto_ptr').first()
|
||||
if auto_ptr_setting is None:
|
||||
return dict(auto_ptr_setting=False)
|
||||
else:
|
||||
return dict(auto_ptr_setting=strtobool(auto_ptr_setting.value))
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user