One tab too much

This commit is contained in:
Michael 2017-12-05 09:34:43 +00:00
parent 5f9e87ea5a
commit 115d71e841

View file

@ -653,7 +653,7 @@ Class OnePoll
* @param array $fields The fields that are updated
*/
private static function updateContact($contact, $fields) {
dba::update('contact', $fields, array('id' => $contact['id']));
dba::update('contact', $fields, array('uid' => 0, 'nurl' => $contact['nurl']));
dba::update('contact', $fields, array('id' => $contact['id']));
dba::update('contact', $fields, array('uid' => 0, 'nurl' => $contact['nurl']));
}
}