aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-08-22 23:18:22 -0700
committerFriendika <info@friendika.com>2011-08-22 23:18:22 -0700
commit56ea11a5616ad5f17a81078fa8251a8c15ec7fd4 (patch)
tree44e8a3a6c9648ecdcc25042dfdcd14e2f612ba9f /include
parent58651f7eb83e1be1f2dffc6f88370187be2f3943 (diff)
downloadvolse-hubzilla-56ea11a5616ad5f17a81078fa8251a8c15ec7fd4.tar.gz
volse-hubzilla-56ea11a5616ad5f17a81078fa8251a8c15ec7fd4.tar.bz2
volse-hubzilla-56ea11a5616ad5f17a81078fa8251a8c15ec7fd4.zip
bad param in like function
Diffstat (limited to 'include')
-rw-r--r--include/diaspora.php2
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']),