aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-02-13 02:33:13 -0800
committerfriendica <info@friendica.com>2013-02-13 02:33:13 -0800
commit942adadec63805e9f6dbed63d7f8a4b69a597e91 (patch)
treebefb2d40b7e0e70ef4b454bacdaf57544cdafdfe /mod
parentd1e5337c72a358acd94f5e5aa53f96ce05abd6c5 (diff)
downloadvolse-hubzilla-942adadec63805e9f6dbed63d7f8a4b69a597e91.tar.gz
volse-hubzilla-942adadec63805e9f6dbed63d7f8a4b69a597e91.tar.bz2
volse-hubzilla-942adadec63805e9f6dbed63d7f8a4b69a597e91.zip
fix auto rmagic when visiting with zid
Diffstat (limited to 'mod')
-rw-r--r--mod/post.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/mod/post.php b/mod/post.php
index 6fcdcb54e..b7c16ff9a 100644
--- a/mod/post.php
+++ b/mod/post.php
@@ -111,8 +111,14 @@ function post_init(&$a) {
logger('mod_zot: auth success from ' . $x[0]['xchan_addr'] . ' for ' . $webbie);
}
+
+// FIXME - we really want to save the return_url in the session before we visit rmagic.
+// This does however prevent a recursion if you visit rmagic directly, as it would otherwise send you back here again.
+// But z_root() probably isn't where you really want to go.
+
if(strstr($desturl,z_root() . '/rmagic'))
goaway(z_root());
+
goaway($desturl);
}