]> git.mxchange.org Git - friendica.git/commitdiff
Fix Issue #5896 by setting static return for edit_post to display item page (kind...
authorJonny Tischbein <jonny_tischbein@systemli.org>
Tue, 16 Oct 2018 17:14:55 +0000 (19:14 +0200)
committerJonny Tischbein <jonny_tischbein@systemli.org>
Tue, 16 Oct 2018 17:14:55 +0000 (19:14 +0200)
mod/editpost.php
src/Object/Post.php

index d6493b3c0c1a8aa34f4d9c547ca1688fe3ca8759..780145ed3f72d885791cc6f6be7c1a3bfbe574d3 100644 (file)
@@ -21,20 +21,14 @@ function editpost_content(App $a)
        }
 
        $post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
-       $return_url = (($a->argc > 2) ? base64_decode($a->argv[2]) : '');
 
        if (!$post_id) {
                notice(L10n::t('Item not found') . EOL);
                return;
        }
 
-       // Fallback to SESSION return_path
-       if (empty($return_url)) {
-               $return_url = $_SESSION['return_url'];
-       }
-
        $fields = ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
-               'type', 'body', 'title', 'file', 'wall', 'post-type'];
+               'type', 'body', 'title', 'file', 'wall', 'post-type', 'guid'];
 
        $item = Item::selectFirstForUser(local_user(), $fields, ['id' => $post_id, 'uid' => local_user()]);
 
@@ -92,7 +86,7 @@ function editpost_content(App $a)
 
        $o .= replace_macros($tpl, [
                '$is_edit' => true,
-               '$return_path' => $return_url,
+               '$return_path' => '/display/' . $item['guid'],
                '$action' => 'item',
                '$share' => L10n::t('Save'),
                '$upload' => L10n::t('Upload photo'),
index 48ffe65b74ed16b1b59fc8cd381d75a0604bfd2c..34a5f8138af27f1eb7deb9899652ddf9247a2f4b 100644 (file)
@@ -157,7 +157,7 @@ class Post extends BaseObject
                        if ($item["event-id"] != 0) {
                                $edpost = ["events/event/" . $item['event-id'], L10n::t("Edit")];
                        } else {
-                               $edpost = ["editpost/" . $item['id'] . "/" . base64_encode($a->cmd), L10n::t("Edit")];
+                               $edpost = ["editpost/" . $item['id'], L10n::t("Edit")];
                        }
                        $dropping = in_array($item['uid'], [0, local_user()]);
                } else {