]> git.mxchange.org Git - friendica.git/commitdiff
Address feedback
authorPhilipp <admin@philipp.info>
Tue, 15 Nov 2022 18:53:53 +0000 (19:53 +0100)
committerPhilipp <admin@philipp.info>
Tue, 15 Nov 2022 18:53:53 +0000 (19:53 +0100)
src/Module/Item/Display.php
src/Module/Item/Feed.php
src/Module/Update/Display.php

index 1b54081d39795e7d9f8ade42e192b0600c9ba0af..ff7455696b6f7fc48e291f40db1d7ca82c598c4d 100644 (file)
@@ -16,8 +16,6 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
- *
- * See update_profile.php for documentation
  */
 
 namespace Friendica\Module\Item;
@@ -47,6 +45,9 @@ use Friendica\Network\HTTPException;
 use Friendica\Content\Widget;
 use Psr\Log\LoggerInterface;
 
+/**
+ * Controller to display one item and its conversation
+ */
 class Display extends BaseModule
 {
        /** @var App\Page */
index c1b12446c8e687ad415722ec68eb8b3b7e53505f..c640a80ba7945aaa663fd51a27f0a051eb36af2a 100644 (file)
@@ -16,8 +16,6 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
- *
- * See update_profile.php for documentation
  */
 
 namespace Friendica\Module\Item;
index 9467badf327639386841d19042b6ee08d32218d6..11e3a3eda74af04c5b1d7cb7181fccd8ded055ab 100644 (file)
@@ -38,8 +38,8 @@ class Display extends DisplayModule
                        throw new HTTPException\UnauthorizedException($this->t('Access denied.'));
                }
 
-               $profileUid = $request['p'] ?? 0;
-               $force      = $request['force'] ?? false;
+               $profileUid = $request['p']      ?? 0;
+               $force      = $request['force']  ?? false;
                $uriId      = $request['uri_id'] ?? 0;
 
                if (empty($uriId)) {
@@ -56,7 +56,7 @@ class Display extends DisplayModule
                        throw new HTTPException\NotFoundException($this->t('The requested item doesn\'t exist or has been deleted.'));
                }
 
-               $this->app->setProfileOwner($item['uid'] ?? $profileUid);
+               $this->app->setProfileOwner($item['uid'] ?: $profileUid);
                $parentUriId = $item['parent-uri-id'];
 
                if (empty($force)) {