]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Profile/Index.php
Merge pull request #13238 from annando/issue-13221
[friendica.git] / src / Module / Profile / Index.php
index 4bb4c731da00a6892953f882a50fc4ff96837401..7a009739e4743b3983203a946be2ed7db416a4f6 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -42,7 +42,7 @@ use Psr\Log\LoggerInterface;
  * ActivityPub endpoint, but it should show statuses to web users.
  *
  * Both these view have dedicated sub-paths,
- * respectively https://domain.tld/profile/nickname/profile and https://domain.tld/profile/nickname/status
+ * respectively https://domain.tld/profile/nickname/profile and https://domain.tld/profile/nickname/conversations
  */
 class Index extends BaseModule
 {
@@ -90,6 +90,6 @@ class Index extends BaseModule
 
        protected function content(array $request = []): string
        {
-               return (new Status($this->mode, $this->pConfig, $this->conversation, $this->session, $this->config, $this->dateTimeFormat, $this->page, $this->app, $this->l10n, $this->baseUrl, $this->args, $this->logger, $this->profiler, $this->response, $this->server, $this->parameters))->content();
+               return (new Conversations($this->mode, $this->pConfig, $this->conversation, $this->session, $this->config, $this->dateTimeFormat, $this->page, $this->app, $this->l10n, $this->baseUrl, $this->args, $this->logger, $this->profiler, $this->response, $this->server, $this->parameters))->content();
        }
 }