From: Zach Prezkuta Date: Tue, 10 Jul 2012 02:35:59 +0000 (-0600) Subject: missed a couple of variable names when I redid comment and like code X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d89b4cea643c121580285537ccfaf0770be91658;p=friendica.git missed a couple of variable names when I redid comment and like code --- diff --git a/include/diaspora.php b/include/diaspora.php index 79b4d1a26b..d07d756e6e 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1272,7 +1272,7 @@ function diaspora_comment($importer,$xml,$msg) { if(($parent_item['origin']) && (! $parent_author_signature)) { q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ", intval($message_id), - dbesc($author_signed_data), + dbesc($signed_data), dbesc(base64_encode($author_signature)), dbesc($diaspora_handle) ); @@ -1855,7 +1855,7 @@ EOT; if(! $parent_author_signature) { q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ", intval($message_id), - dbesc($author_signed_data), + dbesc($signed_data), dbesc(base64_encode($author_signature)), dbesc($diaspora_handle) );