aboutsummaryrefslogtreecommitdiffstats
path: root/mod/dfrn_request.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-08-01 21:02:25 -0700
committerFriendika <info@friendika.com>2011-08-01 21:02:25 -0700
commit2637831d9056862f7c3db718702116ef4652629a (patch)
tree2ee4076e6aeec3f79c64152abcce0ec284ef295f /mod/dfrn_request.php
parent8b31ff15f51c6936daedf28cc88c753214b569e0 (diff)
downloadvolse-hubzilla-2637831d9056862f7c3db718702116ef4652629a.tar.gz
volse-hubzilla-2637831d9056862f7c3db718702116ef4652629a.tar.bz2
volse-hubzilla-2637831d9056862f7c3db718702116ef4652629a.zip
some more zot changes migrating back to f9a mainline
Diffstat (limited to 'mod/dfrn_request.php')
-rw-r--r--mod/dfrn_request.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php
index c9811fa60..6b9558b86 100644
--- a/mod/dfrn_request.php
+++ b/mod/dfrn_request.php
@@ -48,7 +48,7 @@ function dfrn_request_post(&$a) {
if($_POST['cancel']) {
- goaway($a->get_baseurl());
+ goaway(z_root());
}
@@ -190,7 +190,7 @@ function dfrn_request_post(&$a) {
// invalid/bogus request
notice( t('Unrecoverable protocol error.') . EOL );
- goaway($a->get_baseurl());
+ goaway(z_root());
return; // NOTREACHED
}
@@ -602,7 +602,7 @@ function dfrn_request_content(&$a) {
$myaddr = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
}
else {
- $myaddr = $a->user['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3 );
+ $myaddr = $a->user['nickname'] . '@' . substr(z_root(), strpos(z_root(),'://') + 3 );
}
}
elseif(x($_GET,'addr')) {