1
0
Fork 0

"id" is not needed as a parameter

This commit is contained in:
Michael 2020-07-31 04:28:26 +00:00
commit ce7f192f35
6 changed files with 6 additions and 14 deletions

View file

@ -117,13 +117,11 @@ function common_content(App $a)
return $o;
}
$id = 0;
$entries = [];
foreach ($common_friends as $common_friend) {
$contact = Model\Contact::getByURLForUser($common_friend['url'], local_user());
if (!empty($contact)) {
$entries[] = Module\Contact::getContactTemplateVars($contact, ++$id);
$entries[] = Module\Contact::getContactTemplateVars($contact);
}
}

View file

@ -94,7 +94,7 @@ function match_content(App $a)
$contact = Contact::getByURLForUser($profile->url, local_user());
if (!empty($contact)) {
$entries[] = ModuleContact::getContactTemplateVars($contact, $i);
$entries[] = ModuleContact::getContactTemplateVars($contact);
}
}

View file

@ -89,11 +89,9 @@ function suggest_content(App $a)
]);
}
$id = 0;
$entries = [];
foreach ($contacts as $contact) {
$entries[] = ModuleContact::getContactTemplateVars($contact, ++$id);
$entries[] = ModuleContact::getContactTemplateVars($contact);
}
$tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');