}
} elseif ($mode === 'community') {
$profile_owner = 0;
- if (!$update) {
- $live_update_div = '<div id="live-community"></div>' . "\r\n"
- . "<script> var profile_uid = -1; var netargs = '/?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
- }
+// if (!$update) {
+// $live_update_div = '<div id="live-community"></div>' . "\r\n"
+// . "<script> var profile_uid = -1; var netargs = '/?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
+// }
} elseif ($mode === 'search') {
$live_update_div = '<div id="live-search"></div>' . "\r\n";
}
} else {
$writable = false;
}
+ $writable = true;
- if ($mode === 'network-new' || $mode === 'search' || $mode === 'community') {
+ if ($mode === 'network-new' || $mode === 'search') {
+// || $mode === 'community') {
/*
* "New Item View" on network page or search page results
$r = dba::p("SELECT ".item_fieldlists()." FROM `thread`
INNER JOIN `item` ON `item`.`id` = `thread`.`iid` ".item_joins().
"WHERE `thread`.`uid` = 0 AND `verb` = ?
- ORDER BY `thread`.`created` DESC LIMIT ".intval($start).", ".intval($itemspage),
+ ORDER BY `thread`.`commented` DESC LIMIT ".intval($start).", ".intval($itemspage),
ACTIVITY_POST
);
- return dba::inArray($r);
+ while ($rr = dba::fetch($r)) {
+ if (!in_array($rr['item_id'], $parents_arr)) {
+ $parents_arr[] = $rr['item_id'];
+ }
+ }
+
+ dba::close();
+
+ $max_comments = Config::get("system", "max_comments", 100);
+
+ $items = array();
+
+ foreach ($parents_arr AS $parents) {
+ $thread_items = dba::p(item_query()." AND `item`.`uid` = 0
+ AND `item`.`parent` = ?
+ ORDER BY `item`.`commented` DESC LIMIT ".intval($max_comments + 1),
+ $parents
+ );
+
+ if (DBM::is_result($thread_items)) {
+ $items = array_merge($items, dba::inArray($thread_items));
+ }
+ }
+ $items = conv_sort($items, "`commented`");
+
+ return $items;
}
$this->profile_owner = $a->profile['uid'];
$this->writable = can_write_wall($a, $this->profile_owner) || $writable;
break;
+ case 'community':
+ $this->profile_owner = local_user();
+ $this->writable = $writable;
+ break;
default:
logger('[ERROR] Conversation::setMode : Unhandled mode ('. $mode .').', LOGGER_DEBUG);
return false;