From e3ee997cd30db87272aba727c04fe9a77222a50e Mon Sep 17 00:00:00 2001
From: Domovoy <domovoy@errlock.org>
Date: Fri, 24 Aug 2012 04:45:10 +0200
Subject: [PATCH] Fix copy/paste stupidity

---
 include/conversation.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/conversation.php b/include/conversation.php
index 56446d96d..9468832db 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -518,10 +518,10 @@ function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $pr
 
 						if($commentww != 'ww') {
 							// We found no matching contact in the database, just do the best we can (we'll only miss the photo)
-							$this->owner_url = zrl($matches[0][1]);
-							$this->owner_name = $matches[0][2];
+							$owner_url = zrl($matches[0][1]);
+							$owner_name = $matches[0][2];
 							// Use the nosign
-							$this->owner_photo = $a->get_baseurl .'/images/nosign.jpg';
+							$owner_photo = $a->get_baseurl .'/images/nosign.jpg';
 						}
 					}
 				}