fix creation of account on server that supports dataforms
This commit is contained in:
parent
28878b111d
commit
a2e53ccc5c
|
@ -1114,7 +1114,7 @@ class Connection(ConnectionHandlers):
|
||||||
def send_new_account_infos(self, form, is_form):
|
def send_new_account_infos(self, form, is_form):
|
||||||
if is_form:
|
if is_form:
|
||||||
# Get username and password and put them in new_account_info
|
# Get username and password and put them in new_account_info
|
||||||
for field in self._data_form.iter_fields():
|
for field in form.iter_fields():
|
||||||
if field.var == 'username':
|
if field.var == 'username':
|
||||||
self.new_account_info['name'] = field.value
|
self.new_account_info['name'] = field.value
|
||||||
if field.var == 'password':
|
if field.var == 'password':
|
||||||
|
|
Loading…
Reference in New Issue