]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/FriendSuggest.php
Fix user-contact rows not being updated in Contact\User::updateByContactUpdate
[friendica.git] / src / Module / FriendSuggest.php
index a53f78cc6d90d6161ad3f797b8b3b28c8476fa70..940e6ff9ce661fcceac00bd018b85eaeaf2c39c4 100644 (file)
@@ -53,7 +53,7 @@ class FriendSuggest extends BaseModule
                parent::__construct($l10n, $parameters);
 
                if (!local_user()) {
-                       throw new ForbiddenException($this->l10n->t('Permission denied.'));
+                       throw new ForbiddenException($this->t('Permission denied.'));
                }
 
                $this->baseUrl           = $baseUrl;
@@ -68,7 +68,7 @@ class FriendSuggest extends BaseModule
 
                // We do query the "uid" as well to ensure that it is our contact
                if (!$this->dba->exists('contact', ['id' => $cid, 'uid' => local_user()])) {
-                       throw new NotFoundException($this->l10n->t('Contact not found.'));
+                       throw new NotFoundException($this->t('Contact not found.'));
                }
 
                $suggest_contact_id = intval($_POST['suggest']);
@@ -79,7 +79,7 @@ class FriendSuggest extends BaseModule
                // We do query the "uid" as well to ensure that it is our contact
                $contact = $this->dba->selectFirst('contact', ['name', 'url', 'request', 'avatar'], ['id' => $suggest_contact_id, 'uid' => local_user()]);
                if (empty($contact)) {
-                       notice($this->l10n->t('Suggested contact not found.'));
+                       notice($this->t('Suggested contact not found.'));
                        return;
                }
 
@@ -97,7 +97,7 @@ class FriendSuggest extends BaseModule
 
                Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::SUGGESTION, $suggest->id);
 
-               info($this->l10n->t('Friend suggestion sent.'));
+               info($this->t('Friend suggestion sent.'));
        }
 
        public function content(): string
@@ -106,7 +106,7 @@ class FriendSuggest extends BaseModule
 
                $contact = $this->dba->selectFirst('contact', [], ['id' => $cid, 'uid' => local_user()]);
                if (empty($contact)) {
-                       notice($this->l10n->t('Contact not found.'));
+                       notice($this->t('Contact not found.'));
                        $this->baseUrl->redirect();
                }
 
@@ -134,15 +134,15 @@ class FriendSuggest extends BaseModule
                $tpl = Renderer::getMarkupTemplate('fsuggest.tpl');
                return Renderer::replaceMacros($tpl, [
                        '$contact_id'      => $cid,
-                       '$fsuggest_title'  => $this->l10n->t('Suggest Friends'),
+                       '$fsuggest_title'  => $this->t('Suggest Friends'),
                        '$fsuggest_select' => [
                                'suggest',
-                               $this->l10n->t('Suggest a friend for %s', $contact['name']),
+                               $this->t('Suggest a friend for %s', $contact['name']),
                                '',
                                '',
                                $formattedContacts,
                        ],
-                       '$submit'          => $this->l10n->t('Submit'),
+                       '$submit'          => $this->t('Submit'),
                ]);
        }
 }