diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-05-22 11:57:19 +0200 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-05-22 11:57:19 +0200 |
commit | 30f3a16874fd32b55dfbe079afe2470f7ce86e2e (patch) | |
tree | 28af502ed89d812d6130669716726b2fb892e5d0 /mod/redir.php | |
parent | 5dad99888d4d67fd10e777b074a77f01f65018aa (diff) | |
parent | 02502c3a7460a1af3414b65232fd7c672a76d941 (diff) | |
download | volse-hubzilla-30f3a16874fd32b55dfbe079afe2470f7ce86e2e.tar.gz volse-hubzilla-30f3a16874fd32b55dfbe079afe2470f7ce86e2e.tar.bz2 volse-hubzilla-30f3a16874fd32b55dfbe079afe2470f7ce86e2e.zip |
Merge branch 'master' of https://github.com/friendica/friendica
Diffstat (limited to 'mod/redir.php')
-rw-r--r-- | mod/redir.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/redir.php b/mod/redir.php index 9223e5483..0f7b5cc23 100644 --- a/mod/redir.php +++ b/mod/redir.php @@ -6,7 +6,7 @@ function redir_init(&$a) { // traditional DFRN - if(local_user() && $a->argc == 2 && intval($a->argv[1])) { + if(local_user() && $a->argc > 1 && intval($a->argv[1])) { $cid = $a->argv[1]; |