aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-04-10 21:43:44 -0700
committerFriendika <info@friendika.com>2011-04-10 21:43:44 -0700
commit7192299ff14b9754aad2a7b85bff837dc2594bc6 (patch)
treea3471c9746a078cfec86b5de3c40b525f91b2862
parenta65c595b169eec63b9a9dddac14b72e88ba34a04 (diff)
downloadvolse-hubzilla-7192299ff14b9754aad2a7b85bff837dc2594bc6.tar.gz
volse-hubzilla-7192299ff14b9754aad2a7b85bff837dc2594bc6.tar.bz2
volse-hubzilla-7192299ff14b9754aad2a7b85bff837dc2594bc6.zip
first cut at profile page conversation
-rw-r--r--include/conversation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php
index a45befe5b..943ebfeba 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -146,7 +146,7 @@ function conversation(&$a,$r, $mode, $update) {
// If there are more than two comments, squash all but the last 2.
if($item['id'] == $item['parent']) {
- if($blowhard == $item['cid'] && (! $item['self'])) {
+ if($blowhard == $item['cid'] && (! $item['self']) && ($mode != 'profile')) {
$blowhard_count ++;
if($blowhard_count == 3) {
$o .= '<div class="icollapse-wrapper fakelink" id="icollapse-wrapper-' . $item['parent'] . '" onclick="openClose(' . '\'icollapse-' . $item['parent'] . '\');" >' . t('See more posts like this') . '</div>' . '<div class="icollapse" id="icollapse-' . $item['parent'] . '" style="display: none;" >';