summaryrefslogtreecommitdiff
path: root/modules/comment/comment.admin.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-18 15:17:45 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-18 15:17:45 +0000
commitb04836c85e7c6e62e94c396e03123b79df896518 (patch)
tree372a7fbeb1f574a0f09eca1d1bfe2764f21c388e /modules/comment/comment.admin.inc
parent951d21f8d9d12ed00b2918611ecede9575741f5a (diff)
downloadbrdo-b04836c85e7c6e62e94c396e03123b79df896518.tar.gz
brdo-b04836c85e7c6e62e94c396e03123b79df896518.tar.bz2
#731044 by sivaji: Fixed ambiguous column name changed in certain database systems.
Diffstat (limited to 'modules/comment/comment.admin.inc')
-rw-r--r--modules/comment/comment.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.admin.inc b/modules/comment/comment.admin.inc
index 14d17fadb..76d5aa3dc 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')),
);