Fix remaining references to BaseModule->parameters

This commit is contained in:
Hypolite Petovan 2021-11-29 07:24:32 -05:00
parent 75f0c58c5f
commit cd63533e2c
3 changed files with 4 additions and 4 deletions

View file

@ -157,10 +157,10 @@ class Profile extends BaseModule
$this->baseUrl->redirect('profile/' . $contact['nick'] . '/profile');
}
if (isset($parameters['action'])) {
if (isset($this->parameters['action'])) {
self::checkFormSecurityTokenRedirectOnError('contact/' . $contact['id'], 'contact_action', 't');
$cmd = $parameters['action'];
$cmd = $this->parameters['action'];
if ($cmd === 'update' && $localRelationship->rel !== Contact::NOTHING) {
Module\Contact::updateContactFromPoll($contact['id']);
}