diff --git a/boot.php b/boot.php
index e06e1574e2..a44d8298fc 100644
--- a/boot.php
+++ b/boot.php
@@ -4,7 +4,7 @@ set_time_limit(0);
ini_set('pcre.backtrack_limit', 250000);
-define ( 'FRIENDIKA_VERSION', '2.2.981' );
+define ( 'FRIENDIKA_VERSION', '2.2.982' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
define ( 'DB_UPDATE_VERSION', 1054 );
diff --git a/include/conversation.php b/include/conversation.php
index a58a4d6386..febd6c3475 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -267,7 +267,7 @@ function conversation(&$a, $items, $mode, $update) {
$blowhard_count ++;
if($blowhard_count == 3) {
$o .= '
'
+ . '" onclick="openClose(' . '\'icollapse-' . $item['parent'] . '\'); $(\'#icollapse-wrapper-' . $item['parent'] . '\').hide();" >'
. t('See more posts like this') . '
' . '';
}
@@ -292,7 +292,7 @@ function conversation(&$a, $items, $mode, $update) {
if(($comments[$item['parent']] > 2) && ($comments_seen <= ($comments[$item['parent']] - 2)) && ($item['gravity'] == 6)) {
if(! $comments_collapsed) {
$o .= '
'
+ . '" onclick="openClose(' . '\'ccollapse-' . $item['parent'] . '\'); $(\'#ccollapse-wrapper-' . $item['parent'] . '\').hide();" >'
. sprintf( t('See all %d comments'), $comments[$item['parent']]) . '
'
. '
';
$comments_collapsed = true;