diff options
author | Friendika <info@friendika.com> | 2011-09-28 15:07:01 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-28 15:07:01 -0700 |
commit | bedb4eb7150f8ccc48121a9512e9f591b27572a8 (patch) | |
tree | 7d9fcd6957e046350f9a051af851e2f452413c55 /mod/hostxrd.php | |
parent | a1786cbf61a3ea6ff15ebcc578e7ad9800814391 (diff) | |
download | volse-hubzilla-bedb4eb7150f8ccc48121a9512e9f591b27572a8.tar.gz volse-hubzilla-bedb4eb7150f8ccc48121a9512e9f591b27572a8.tar.bz2 volse-hubzilla-bedb4eb7150f8ccc48121a9512e9f591b27572a8.zip |
just hostname not url in hm:host - host xrd document
Diffstat (limited to 'mod/hostxrd.php')
-rw-r--r-- | mod/hostxrd.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/hostxrd.php b/mod/hostxrd.php index a1c24765b..fe61a874c 100644 --- a/mod/hostxrd.php +++ b/mod/hostxrd.php @@ -32,7 +32,7 @@ function hostxrd_init(&$a) { $tpl = file_get_contents('view/xrd_host.tpl'); echo str_replace(array( - '$zroot','$domain','$zot_post','$bigkey'),array(z_root(),z_path(),z_root() . '/post', salmon_key(get_config('system','site_pubkey'))),$tpl); + '$zhost','$zroot','$domain','$zot_post','$bigkey'),array($a->get_hostname(),z_root(),z_path(),z_root() . '/post', salmon_key(get_config('system','site_pubkey'))),$tpl); session_write_close(); exit(); |