mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-30 11:40:08 +02:00
Preliminary MSSQL compability updates
git-svn-id: file:///svn/phpbb/trunk@70 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -70,13 +70,7 @@ if(!isset($start))
|
||||
$start = 0;
|
||||
}
|
||||
|
||||
$sql = "SELECT t.*, u.username, p.post_time
|
||||
FROM " . TOPICS_TABLE ." t, ". USERS_TABLE. " u
|
||||
LEFT JOIN ".POSTS_TABLE." p ON p.post_id = t.topic_last_post_id
|
||||
WHERE t.forum_id = '$forum_id'
|
||||
AND t.topic_poster = u.user_id
|
||||
ORDER BY topic_time DESC
|
||||
LIMIT $start, $topics_per_page";
|
||||
$sql = "SELECT t.*, u.username, p.post_time FROM " . TOPICS_TABLE ." t JOIN ". USERS_TABLE. " u ON t.topic_poster = u.user_id LEFT JOIN ".POSTS_TABLE." p ON p.post_id = t.topic_last_post_id WHERE t.forum_id = '$forum_id' ORDER BY topic_time DESC LIMIT $start, $topics_per_page";
|
||||
if(!$t_result = $db->sql_query($sql))
|
||||
{
|
||||
error_die($db, QUERY_ERROR);
|
||||
|
Reference in New Issue
Block a user