diff options
author | Friendika <info@friendika.com> | 2011-08-22 23:18:22 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-08-22 23:18:22 -0700 |
commit | 56ea11a5616ad5f17a81078fa8251a8c15ec7fd4 (patch) | |
tree | 44e8a3a6c9648ecdcc25042dfdcd14e2f612ba9f | |
parent | 58651f7eb83e1be1f2dffc6f88370187be2f3943 (diff) | |
download | volse-hubzilla-56ea11a5616ad5f17a81078fa8251a8c15ec7fd4.tar.gz volse-hubzilla-56ea11a5616ad5f17a81078fa8251a8c15ec7fd4.tar.bz2 volse-hubzilla-56ea11a5616ad5f17a81078fa8251a8c15ec7fd4.zip |
bad param in like function
-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 4420129b0..58dd579bc 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -907,7 +907,7 @@ function diaspora_send_followup($item,$owner,$contact) { else $signed_text = $item['guid'] . ';' . $parent_guid . ';' . $text . ';' . $myaddr; - $authorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey']),'sha'); + $authorsig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha')); $msg = replace_macros($tpl,array( '$guid' => xmlify($item['guid']), |