mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
bad param in like function
This commit is contained in:
parent
58651f7eb8
commit
56ea11a561
1 changed files with 1 additions and 1 deletions
|
@ -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']),
|
||||
|
|
Loading…
Reference in a new issue