Renamed function parameter

This commit is contained in:
Michael Vogel 2019-08-30 07:59:18 +02:00
parent 3b92f7357c
commit f293e352ec
1 changed files with 3 additions and 3 deletions

View File

@ -140,15 +140,15 @@ class Contact extends BaseObject
* Insert a row into the contact table
* Important: You can't use DBA::lastInsertId() after this call since it will be set to 0.
*
* @param array $param parameter array
* @param array $fields field array
* @param bool $on_duplicate_update Do an update on a duplicate entry
*
* @return boolean was the insert successful?
* @throws \Exception
*/
public static function insert(array $param, bool $on_duplicate_update = false)
public static function insert(array $fields, bool $on_duplicate_update = false)
{
$ret = DBA::insert('contact', $param, $on_duplicate_update);
$ret = DBA::insert('contact', $fields, $on_duplicate_update);
$contact = DBA::selectFirst('contact', ['nurl', 'uid'], ['id' => DBA::lastInsertId()]);
if (!DBA::isResult($contact)) {
// Shouldn't happen