diff options
author | friendica <info@friendica.com> | 2012-07-18 04:49:15 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-18 04:49:15 -0700 |
commit | d683df17bd530739bc64c79f152957ab229b6a02 (patch) | |
tree | 80d8a9e92d764aeacbb7bc09551ca1e501456ace /mod/xrd.php | |
parent | 22cf19e174bcee88b44968f2773d1bad2da2b54d (diff) | |
download | volse-hubzilla-d683df17bd530739bc64c79f152957ab229b6a02.tar.gz volse-hubzilla-d683df17bd530739bc64c79f152957ab229b6a02.tar.bz2 volse-hubzilla-d683df17bd530739bc64c79f152957ab229b6a02.zip |
Removing connectors we won't be needing - this is probably going to break some shit.
Diffstat (limited to 'mod/xrd.php')
-rw-r--r-- | mod/xrd.php | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/mod/xrd.php b/mod/xrd.php index 623c34b4e..49db2fac8 100644 --- a/mod/xrd.php +++ b/mod/xrd.php @@ -27,16 +27,7 @@ function xrd_init(&$a) { header('Access-Control-Allow-Origin: *'); header("Content-type: text/xml"); - if(get_config('system','diaspora_enabled')) { - $tpl = file_get_contents('view/xrd_diaspora.tpl'); - $dspr = replace_macros($tpl,array( - '$baseurl' => $a->get_baseurl(), - '$dspr_guid' => $r[0]['guid'], - '$dspr_key' => base64_encode(pemtorsa($r[0]['pubkey'])) - )); - } - else - $dspr = ''; + $dspr = ''; $tpl = file_get_contents('view/xrd_person.tpl'); |