2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
@@ -343,6 +344,7 @@ function _forum_format($topic) {
* Array of object containing the forum information.
*/
functionforum_get_forums($tid=0){
if(!$tid){
$tid=0;
}
...
...
@@ -378,6 +380,8 @@ function forum_get_forums($tid = 0) {
// table1 INNER JOIN table2 INNER JOIN table3 ON table2_criteria ON table3_criteria
// used to join node_comment_statistics to users.
$topic=db_fetch_object(db_query_range('SELECT DISTINCT(n.nid), l.last_comment_timestamp, IF(l.last_comment_uid, cu.name, l.last_comment_name) as last_comment_name, l.last_comment_uid FROM {node} n '.node_access_join_sql().", {node_comment_statistics} l /*! USE INDEX (node_comment_timestamp) */, {users} cu, {term_node} r WHERE n.nid = r.nid AND r.tid = %d AND n.status = 1 AND n.type = 'forum' AND l.last_comment_uid = cu.uid AND n.nid = l.nid AND ".node_access_where_sql().' ORDER BY l.last_comment_timestamp DESC',$forum->tid,0,1));
@@ -343,6 +344,7 @@ function _forum_format($topic) {
* Array of object containing the forum information.
*/
functionforum_get_forums($tid=0){
if(!$tid){
$tid=0;
}
...
...
@@ -378,6 +380,8 @@ function forum_get_forums($tid = 0) {
// table1 INNER JOIN table2 INNER JOIN table3 ON table2_criteria ON table3_criteria
// used to join node_comment_statistics to users.
$topic=db_fetch_object(db_query_range('SELECT DISTINCT(n.nid), l.last_comment_timestamp, IF(l.last_comment_uid, cu.name, l.last_comment_name) as last_comment_name, l.last_comment_uid FROM {node} n '.node_access_join_sql().", {node_comment_statistics} l /*! USE INDEX (node_comment_timestamp) */, {users} cu, {term_node} r WHERE n.nid = r.nid AND r.tid = %d AND n.status = 1 AND n.type = 'forum' AND l.last_comment_uid = cu.uid AND n.nid = l.nid AND ".node_access_where_sql().' ORDER BY l.last_comment_timestamp DESC',$forum->tid,0,1));