]> git.mxchange.org Git - friendica.git/commitdiff
adjust argc check in mod/editpost + relative path in mod/message
authorJonny Tischbein <jonny_tischbein@systemli.org>
Thu, 20 Sep 2018 12:41:52 +0000 (14:41 +0200)
committerJonny Tischbein <jonny_tischbein@systemli.org>
Thu, 20 Sep 2018 12:41:52 +0000 (14:41 +0200)
mod/editpost.php
mod/message.php

index 61dfcf911d2d7e07dc0c95a2d463fe925a92c002..d4f5567eeb33880e8638a9baf1805fc48ec78f50 100644 (file)
@@ -21,7 +21,7 @@ function editpost_content(App $a)
        }
 
        $post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
-       $return_url = (($a->argc > 1) ? base64_decode($a->argv[2]) : '');
+       $return_url = (($a->argc > 2) ? base64_decode($a->argv[2]) : '');
 
        if (!$post_id) {
                notice(L10n::t('Item not found') . EOL);
index 9ac0ddbc0b6be40aab74fb5fe17947b3780aba8a..7377ba5e48a74d88210c51fbe31a0197ba617ba8 100644 (file)
@@ -92,7 +92,7 @@ function message_post(App $a)
                $a->argc = 2;
                $a->argv[1] = 'new';
        } else {
-               goaway(System::baseUrl() . '/' . $a->cmd . '/' . $ret);
+               goaway($a->cmd . '/' . $ret);
        }
 }