From b66458257d8abccb671509f98e64e4cf0b0fe417 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Tue, 5 Sep 2006 22:31:13 +0000 Subject: [PATCH] Adding support for MSSQL and Oracle in this select. Not really sure why we need one OUTER join there, if every discussion has one usermodified but.....not time now. --- mod/forum/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/forum/lib.php b/mod/forum/lib.php index 13bd5c4942..ef7e19f6b1 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -1475,7 +1475,7 @@ function forum_get_discussions($forum="0", $forumsort="d.timemodified DESC", } //TODO: there must be a nice way to do this that keeps both postgres and mysql 3.2x happy but I can't find it right now. - if ($CFG->dbtype == 'postgres7') { + if ($CFG->dbtype == 'postgres7' || $CFG->dbtype == 'mssql' || $CFG->dbtype == 'oci8po') { return get_records_sql("SELECT $postdata, d.name, d.timemodified, d.usermodified, d.groupid, u.firstname, u.lastname, u.email, u.picture $umfields FROM {$CFG->prefix}forum_discussions d -- 2.39.5