Fix copy/paste stupidity

This commit is contained in:
Domovoy 2012-08-24 04:45:10 +02:00
parent 8a25c7876c
commit e3ee997cd3
1 changed files with 3 additions and 3 deletions

View File

@ -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';
}
}
}