From b04836c85e7c6e62e94c396e03123b79df896518 Mon Sep 17 00:00:00 2001 From: Angie Byron <webchick@24967.no-reply.drupal.org> Date: Mon, 18 Oct 2010 15:17:45 +0000 Subject: [PATCH] #731044 by sivaji: Fixed ambiguous column name changed in certain database systems. --- modules/comment/comment.admin.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/comment/comment.admin.inc b/modules/comment/comment.admin.inc index 14d17fadbf66..76d5aa3dc0bb 100644 --- a/modules/comment/comment.admin.inc +++ b/modules/comment/comment.admin.inc @@ -64,7 +64,7 @@ function comment_admin_overview($form, &$form_state, $arg) { 'subject' => array('data' => t('Subject'), 'field' => 'subject'), 'author' => array('data' => t('Author'), 'field' => 'name'), 'posted_in' => array('data' => t('Posted in'), 'field' => 'node_title'), - 'changed' => array('data' => t('Updated'), 'field' => 'changed', 'sort' => 'desc'), + 'changed' => array('data' => t('Updated'), 'field' => 'c.changed', 'sort' => 'desc'), 'operations' => array('data' => t('Operations')), ); -- GitLab