mirror of
https://github.com/friendica/friendica
synced 2024-11-13 01:02:53 +00:00
may fix diaspora send
This commit is contained in:
parent
9b5d5eca07
commit
5a6a3cab8e
2 changed files with 4 additions and 4 deletions
2
boot.php
2
boot.php
|
@ -7,7 +7,7 @@ require_once('include/text.php');
|
||||||
require_once("include/pgettext.php");
|
require_once("include/pgettext.php");
|
||||||
|
|
||||||
|
|
||||||
define ( 'FRIENDIKA_VERSION', '2.2.1104' );
|
define ( 'FRIENDIKA_VERSION', '2.2.1105' );
|
||||||
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1087 );
|
define ( 'DB_UPDATE_VERSION', 1087 );
|
||||||
|
|
||||||
|
|
|
@ -165,15 +165,15 @@ EOT;
|
||||||
|
|
||||||
$magic_env = <<< EOT
|
$magic_env = <<< EOT
|
||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<entry xmlns='http://www.w3.org/2005/Atom'>
|
<diaspora xmlns="https://joindiaspora.org/protocol" xmlns:me="http://salmon-protocol.org/ns/magic-env" >
|
||||||
$encrypted_header
|
$encrypted_header
|
||||||
<me:env xmlns:me="http://salmon-protocol.org/ns/magic-env">
|
<me:env>
|
||||||
<me:encoding>base64url</me:encoding>
|
<me:encoding>base64url</me:encoding>
|
||||||
<me:alg>RSA-SHA256</me:alg>
|
<me:alg>RSA-SHA256</me:alg>
|
||||||
<me:data type="application/xml">$data</me:data>
|
<me:data type="application/xml">$data</me:data>
|
||||||
<me:sig>$sig</me:sig>
|
<me:sig>$sig</me:sig>
|
||||||
</me:env>
|
</me:env>
|
||||||
</entry>
|
</diaspora>
|
||||||
EOT;
|
EOT;
|
||||||
|
|
||||||
logger('diaspora_msg_build: magic_env: ' . $magic_env, LOGGER_DATA);
|
logger('diaspora_msg_build: magic_env: ' . $magic_env, LOGGER_DATA);
|
||||||
|
|
Loading…
Reference in a new issue