mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-04-21 11:07: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>
|
</option>
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
{% else %}
|
{% 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 }}">
|
value="{{ domain.name }}">
|
||||||
{{ domain.name }}
|
{{ domain.name }}
|
||||||
</option>
|
</option>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user