]> git.mxchange.org Git - friendica.git/commitdiff
Fixed SQL error
authorMichael <heluecht@pirati.ca>
Sun, 3 Jun 2018 09:19:27 +0000 (09:19 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 3 Jun 2018 09:19:27 +0000 (09:19 +0000)
include/api.php

index 54176da798bc0756674e27e048a7293cea0a5663..2892dfe4ee4a31546c66bf51292f98c6439d51f0 100644 (file)
@@ -2066,7 +2066,7 @@ function api_conversation_show($type)
                $sql_extra = ' AND `item`.`id` <= ' . intval($max_id);
        }
 
-       $r = q("SELECT `* FROM `item`
+       $r = q("SELECT `item`.`*` FROM `item`
                STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
                        AND (NOT `contact`.`blocked` OR `contact`.`pending`)
                WHERE `item`.`parent` = %d AND `item`.`visible`