From d64bc008fdff5cad8634395c375a744b8fe960d4 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 17 Oct 2003 16:10:48 +0000 Subject: Patch by Moshe: - comment.module: fixed an ambigous 'timestamp' query - forum.module: prev/next links no longer excerpt from the title+body in their title attribute. they now excerpt from only their title. this is more consistent with rest of drupal, and GROUP BY on node.body which isn't appreciated by MSSQL. also replaced some '' with NULL which caused errors in MSSQL - statistics.module: replaced a USING join with a standard ON join. USING is not as widely supported, and functionally equivalent. --- modules/comment.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/comment.module') diff --git a/modules/comment.module b/modules/comment.module index 10ba96760..1f048fc40 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -996,7 +996,7 @@ function comment_admin_overview($status = 0) { array("data" => t("subject"), "field" => "subject"), array("data" => t("author"), "field" => "u.name"), array("data" => t("status"), "field" => "status"), - array("data" => t("time"), "field" => "timestamp", "sort" => "desc"), + array("data" => t("time"), "field" => "c.timestamp", "sort" => "desc"), array("data" => t("operations"), "colspan" => 2) ); -- cgit v1.2.3