From 0a302e100d6b7f4be56af46a352f5bb4778fb96e Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 20 Jun 2012 21:09:52 -0700 Subject: [PATCH] try and eliminate the openssl warnings for forums trying to talk back to fans --- mod/dfrn_poll.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/dfrn_poll.php b/mod/dfrn_poll.php index 436727a78f..f3c1454102 100644 --- a/mod/dfrn_poll.php +++ b/mod/dfrn_poll.php @@ -443,7 +443,7 @@ function dfrn_poll_content(&$a) { $encrypted_id = ''; $id_str = $my_id . '.' . mt_rand(1000,9999); - if($r[0]['duplex'] && strlen($r[0]['pubkey'])) { + if(($r[0]['duplex'] && strlen($r[0]['pubkey'])) || (! strlen($r[0]['prvkey']))) { openssl_public_encrypt($hash,$challenge,$r[0]['pubkey']); openssl_public_encrypt($id_str,$encrypted_id,$r[0]['pubkey']); }