zotfeed issues
This commit is contained in:
parent
98b3d7d6ff
commit
268307b534
@ -4408,7 +4408,7 @@ function zot_feed($uid,$observer_xchan,$arr) {
|
||||
$limit = " LIMIT 100 ";
|
||||
|
||||
if($mindate != NULL_DATE) {
|
||||
$sql_extra .= " and ( created > '$mindate' or edited > '$mindate' ) ";
|
||||
$sql_extra .= " and ( created > '$mindate' or changed > '$mindate' ) ";
|
||||
}
|
||||
|
||||
if($message_id) {
|
||||
@ -4426,7 +4426,7 @@ function zot_feed($uid,$observer_xchan,$arr) {
|
||||
|
||||
if(is_sys_channel($uid)) {
|
||||
require_once('include/security.php');
|
||||
$r = q("SELECT parent, created from item
|
||||
$r = q("SELECT parent, created, postopts from item
|
||||
WHERE uid != %d
|
||||
AND item_private = 0 AND item_restrict = 0 AND uid in (" . stream_perms_api_uids(PERMS_PUBLIC,10,1) . ")
|
||||
AND (item_flags & %d) > 0
|
||||
@ -4436,7 +4436,7 @@ function zot_feed($uid,$observer_xchan,$arr) {
|
||||
);
|
||||
}
|
||||
else {
|
||||
$r = q("SELECT parent, created from item
|
||||
$r = q("SELECT parent, created, postopts from item
|
||||
WHERE uid = %d AND item_restrict = 0
|
||||
AND (item_flags & %d) > 0
|
||||
$sql_extra GROUP BY parent ORDER BY created ASC $limit",
|
||||
|
Reference in New Issue
Block a user