]> git.mxchange.org Git - friendica.git/commitdiff
Merge remote-tracking branch 'upstream/develop' into 1501-central-item-storage
authorMichael Vogel <icarus@dabo.de>
Mon, 2 Feb 2015 23:30:37 +0000 (00:30 +0100)
committerMichael Vogel <icarus@dabo.de>
Mon, 2 Feb 2015 23:30:37 +0000 (00:30 +0100)
include/api.php

index 2d3c31af0c3f7a32209d702d2d8dd315d619541e..c8a313ce198e764187d505ca3d61c6f077001b3e 100644 (file)
                // get last public wall message
                $lastwall = q("SELECT `item`.*, `i`.`contact-id` as `reply_uid`, `i`.`author-link` AS `item-author`
                                FROM `item`, `item` as `i`
-                               WHERE `item`.`contact-id` = %d
+                               WHERE `item`.`contact-id` = %d AND `item`.`uid` = %d
                                        AND ((`item`.`author-link` IN ('%s', '%s')) OR (`item`.`owner-link` IN ('%s', '%s')))
                                        AND `i`.`id` = `item`.`parent`
                                        AND `item`.`type`!='activity'
                                ORDER BY `item`.`created` DESC
                                LIMIT 1",
                                intval($user_info['cid']),
+                               intval(api_user()),
                                dbesc($user_info['url']),
                                dbesc(normalise_link($user_info['url'])),
                                dbesc($user_info['url']),