]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #1345 from annando/1501-api-speedup
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 2 Feb 2015 21:35:56 +0000 (22:35 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 2 Feb 2015 21:35:56 +0000 (22:35 +0100)
API post increase speed

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']),