From: Friendika Date: Mon, 22 Aug 2011 08:57:52 +0000 (-0700) Subject: correct the diaspora_like signable string format X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=812222fb1757c046b80a7b8169d69626256098cf;p=friendica.git correct the diaspora_like signable string format --- diff --git a/include/diaspora.php b/include/diaspora.php index faededa6a4..4113e9ce10 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -660,7 +660,7 @@ function diaspora_like($importer,$xml,$msg) { return; } - $author_signed_data = $guid . ';' . $parent_guid . ';' . $target_type . ';' . $positive . ';' . $diaspora_handle; + $author_signed_data = $guid . ';' . $target_type . ';' . $parent_guid . ';' . $positive . ';' . $diaspora_handle; $author_signature = base64_decode($author_signature); @@ -680,7 +680,7 @@ function diaspora_like($importer,$xml,$msg) { if(! rsa_verify($author_signed_data,$author_signature,$key,'sha')) { logger('diaspora_like: verification failed.'); -// return; + return; } if($parent_author_signature) { @@ -692,7 +692,7 @@ function diaspora_like($importer,$xml,$msg) { if(! rsa_verify($owner_signed_data,$parent_author_signature,$key,'sha')) { logger('diaspora_like: owner verification failed.'); -// return; + return; } }