]> git.mxchange.org Git - friendica.git/commitdiff
Display hadn't shown public items that weren't known to the user
authorMichael <heluecht@pirati.ca>
Wed, 30 Aug 2017 20:20:01 +0000 (20:20 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 30 Aug 2017 20:20:01 +0000 (20:20 +0000)
mod/display.php

index b76fe1d483df8020cf53c178dd659da11d4162c0..56f7aa6442696389094a14e0798668e8c1083a40 100644 (file)
@@ -382,11 +382,9 @@ function display_content(App $a, $update = 0) {
                }
        }
 
-       $r = dba::p(item_query()." AND `item`.`uid` = ?
-               AND `item`.`parent` = (SELECT `parent` FROM `item` WHERE `id` = ?)
+       $r = dba::p(item_query()."AND `item`.`parent` = (SELECT `parent` FROM `item` WHERE `id` = ?)
                $sql_extra
                ORDER BY `parent` DESC, `gravity` ASC, `id` ASC",
-               $a->profile['uid'],
                $item_id
        );
 
@@ -484,12 +482,11 @@ function display_content(App $a, $update = 0) {
 
                return $o;
        }
-
        $r = dba::fetch_first("SELECT `id`,`deleted` FROM `item` WHERE `id` = ? OR `uri` = ? LIMIT 1",
                $item_id,
                $item_id
        );
-       if ($r) {
+       if (dbm::is_result($r)) {
                if ($r['deleted']) {
                        notice(t('Item has been removed.') . EOL);
                } else {