aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-04-11 20:11:21 -0700
committerFriendika <info@friendika.com>2011-04-11 20:11:21 -0700
commit0ed2d19ac8e0b624dd4c971dd3f053f7b02b04d4 (patch)
tree71f138137176d37c1d937fd9b08345b256d03821 /include
parentde8b381149c8372dc0305adbc9e025d0abc6b2b0 (diff)
downloadvolse-hubzilla-0ed2d19ac8e0b624dd4c971dd3f053f7b02b04d4.tar.gz
volse-hubzilla-0ed2d19ac8e0b624dd4c971dd3f053f7b02b04d4.tar.bz2
volse-hubzilla-0ed2d19ac8e0b624dd4c971dd3f053f7b02b04d4.zip
death to comment box oddities (a slow death as it will take some time for everybody to upgrade)
Diffstat (limited to 'include')
-rw-r--r--include/conversation.php23
-rw-r--r--include/items.php4
2 files changed, 17 insertions, 10 deletions
diff --git a/include/conversation.php b/include/conversation.php
index 3f8ea4196..d81142bca 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -6,21 +6,21 @@ function conversation(&$a, $items, $mode, $update) {
require_once('bbcode.php');
$profile_owner = 0;
- $writable = false;
+ $page_writeable = false;
if($mode === 'network') {
$profile_owner = local_user();
- $writable = true;
+ $page_writeable = true;
}
if($mode === 'profile') {
$profile_owner = $a->profile['profile_uid'];
- $writable = can_write_wall($a,$profile_owner);
+ $page_writeable = can_write_wall($a,$profile_owner);
}
if($mode === 'display') {
$profile_owner = $a->profile['uid'];
- $writable = can_write_wall($a,$profile_owner);
+ $page_writeable = can_write_wall($a,$profile_owner);
}
if($update)
@@ -177,7 +177,6 @@ function conversation(&$a, $items, $mode, $update) {
$sparkle = '';
$owner_url = $owner_photo = $owner_name = '';
-
// We've already parsed out like/dislike for special treatment. We can ignore them now
if(((activity_match($item['verb'],ACTIVITY_LIKE))
@@ -185,11 +184,17 @@ function conversation(&$a, $items, $mode, $update) {
&& ($item['id'] != $item['parent']))
continue;
+ $toplevelpost = (($item['id'] == $item['parent']) ? true : false);
+
+
// Take care of author collapsing and comment collapsing
// If a single author has more than 3 consecutive top-level posts, squash the remaining ones.
// If there are more than two comments, squash all but the last 2.
- if($item['id'] == $item['parent']) {
+ if($toplevelpost) {
+
+ $item_writeable = (($item['writable'] || $item['self']) ? true : false);
+
if($blowhard == $item['cid'] && (! $item['self']) && ($mode != 'profile')) {
$blowhard_count ++;
if($blowhard_count == 3) {
@@ -210,6 +215,8 @@ function conversation(&$a, $items, $mode, $update) {
$comments_seen ++;
+ $show_comment_box = ((($page_writeable) && ($item_writeable) && ($comments_seen == $comments[$item['parent']])) ? true : false);
+
if(($comments[$item['parent']] > 2) && ($comments_seen <= ($comments[$item['parent']] - 2)) && ($item['gravity'] == 6)) {
if(! $comments_collapsed) {
$o .= '<div class="ccollapse-wrapper fakelink" id="ccollapse-wrapper-' . $item['parent'] . '" onclick="openClose(' . '\'ccollapse-' . $item['parent'] . '\');" >' . sprintf( t('See all %d comments'), $comments[$item['parent']]) . '</div>';
@@ -265,7 +272,7 @@ function conversation(&$a, $items, $mode, $update) {
$likebuttons = '';
- if($writable) {
+ if($page_writeable) {
if($item['id'] == $item['parent']) {
$likebuttons = replace_macros((($item['private']) ? $noshare_tpl : $like_tpl),array(
'$id' => $item['id'],
@@ -276,7 +283,7 @@ function conversation(&$a, $items, $mode, $update) {
));
}
- if($item['last-child']) {
+ if(($show_comment_box) || (($show_comment_box == false) && ($item['last-child']))) {
$comment = replace_macros($cmnt_tpl,array(
'$return_path' => '',
'$jsreload' => (($mode === 'display') ? $_SESSION['return_url'] : ''),
diff --git a/include/items.php b/include/items.php
index d7644fb42..86579512e 100644
--- a/include/items.php
+++ b/include/items.php
@@ -1367,8 +1367,8 @@ function new_follower($importer,$contact,$datarray,$item) {
// create contact record - set to readonly
$r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `name`, `nick`, `photo`, `network`, `rel`,
- `blocked`, `readonly`, `pending` )
- VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 1, 1 ) ",
+ `blocked`, `readonly`, `pending`, `writable` )
+ VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', %d, 0, 1, 1, 1 ) ",
intval($importer['uid']),
dbesc(datetime_convert()),
dbesc($url),