mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-09 23:20:27 +00:00
fixed ngoduykhanh/PowerDNS-Admin issue 194
This commit is contained in:
parent
c30cffd91c
commit
f014798374
@ -64,6 +64,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))
|
||||
|
||||
# START USER AUTHENTICATION HANDLER
|
||||
|
Loading…
Reference in New Issue
Block a user