]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Update/Display.php
Removed redundant maximagesize = INF statements
[friendica.git] / src / Module / Update / Display.php
index 9467badf327639386841d19042b6ee08d32218d6..4b84cba7a82bce91dae06941bfb59d863c960ffa 100644 (file)
@@ -17,7 +17,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\Update;
@@ -38,8 +37,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)) {
@@ -49,14 +48,14 @@ class Display extends DisplayModule
                $item = Post::selectFirst(
                        ['uid', 'parent-uri-id', 'uri-id'],
                        ['uri-id' => $uriId, 'uid' => [0, $profileUid]],
-                       ['order' => ['uid' => true]]
+                       ['order'  => ['uid' => true]]
                );
 
                if (empty($item)) {
                        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)) {