Index: trunk/extensions/LiquidThreads/api/ApiFeedLQTThreads.php |
— | — | @@ -58,7 +58,7 @@ |
59 | 59 | $feedItems = array(); |
60 | 60 | |
61 | 61 | $tables = array( 'thread' ); |
62 | | - $fields = array( 'thread.*' ); |
| 62 | + $fields = array( $db->tableName( 'thread' ) . ".*" ); |
63 | 63 | $conds = $this->getConditions( $params, $db ); |
64 | 64 | $options = array( 'LIMIT' => 200, 'ORDER BY' => 'thread_created DESC' ); |
65 | 65 | |