From d89b4cea643c121580285537ccfaf0770be91658 Mon Sep 17 00:00:00 2001
From: Zach Prezkuta <fermion@gmx.com>
Date: Mon, 9 Jul 2012 20:35:59 -0600
Subject: [PATCH] missed a couple of variable names when I redid comment and
 like code

---
 include/diaspora.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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)
 		);
-- 
2.39.5