mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-12-04 19:15:30 +00:00
Corrected the logic flaw in the account add / edit form that would cause all unassigned zones to be selected automatically following the attempt of account creation with an invalid name.
This commit is contained in:
parent
d773e078f5
commit
7eee3134d4
@ -133,7 +133,7 @@
|
||||
</option>
|
||||
{% endwith %}
|
||||
{% else %}
|
||||
<option {% if account.id == domain.account_id %}selected{% endif %}
|
||||
<option {% if account.id and account.id == domain.account_id %}selected{% endif %}
|
||||
value="{{ domain.name }}">
|
||||
{{ domain.name }}
|
||||
</option>
|
||||
|
Loading…
Reference in New Issue
Block a user