diff options
author | Friendika <info@friendika.com> | 2011-08-15 06:27:17 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-08-15 06:27:17 -0700 |
commit | 805770521eebdd0bc6ddfb2f174a76e0646557fc (patch) | |
tree | 0a1554d6d3b64986c626f299eb89e516c4699620 | |
parent | 5d6155a9685202b055744549a2cb84e3d8195fd2 (diff) | |
download | volse-hubzilla-805770521eebdd0bc6ddfb2f174a76e0646557fc.tar.gz volse-hubzilla-805770521eebdd0bc6ddfb2f174a76e0646557fc.tar.bz2 volse-hubzilla-805770521eebdd0bc6ddfb2f174a76e0646557fc.zip |
errant debug statement
-rw-r--r-- | include/diaspora.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index edb273d3c..74aa32f5c 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -131,7 +131,7 @@ function diaspora_decode($importer,$xml) { openssl_private_decrypt($encrypted_aes_key_bundle,$outer_key_bundle,$importer['prvkey']); $j_outer_key_bundle = json_decode($outer_key_bundle); -logger('outer: ' . $j_outer_key_bundle); + $outer_iv = base64_decode($j_outer_key_bundle->iv); $outer_key = base64_decode($j_outer_key_bundle->key); |