From: martinlanghoff Date: Tue, 26 Sep 2006 05:09:26 +0000 (+0000) Subject: search: removed dbtype-specific select - MySQL can now handle grownup syntax X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=b4dd303a9794dbd3baa67a7f7756d62cbd40ae0a;p=moodle.git search: removed dbtype-specific select - MySQL can now handle grownup syntax --- diff --git a/search/documents/forum_document.php b/search/documents/forum_document.php index 0dacc20938..e447a53f44 100644 --- a/search/documents/forum_document.php +++ b/search/documents/forum_document.php @@ -109,8 +109,7 @@ } } - if ($CFG->dbtype == 'postgres7') { - return get_recordset_sql("SELECT p.id, p.subject, p.discussion, p.message, + return get_recordset_sql("SELECT p.id, p.subject, p.discussion, p.message, p.deleted, d.groupid, u.firstname, u.lastname FROM {$CFG->prefix}forum_discussions d JOIN {$CFG->prefix}forum_posts p ON p.discussion = d.id @@ -119,18 +118,6 @@ AND p.parent = 0 $timelimit ORDER BY d.timemodified DESC"); - } else { - return get_recordset_sql("SELECT p.id, p.subject, p.discussion, p.message, p.deleted, - d.groupid, u.firstname, u.lastname - FROM ({$CFG->prefix}forum_posts p, - {$CFG->prefix}user u, - {$CFG->prefix}forum_discussions d) - WHERE d.forum = '$forum' - AND p.discussion = d.id - AND p.parent = 0 - AND p.userid = u.id $timelimit - ORDER BY d.timemodified DESC"); - } //else } //forum_get_discussions_fast //reworked faster version from /mod/forum/lib.php