#373897 follow-up by jbrown: Remove bogus sortable author column on content page, resulting in SQL errors.

merge-requests/26/head
Angie Byron 2010-01-08 05:57:12 +00:00
parent 3ff482d390
commit 09e6a714a3
1 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,7 @@ function node_admin_nodes() {
$header = array(
'title' => array('data' => t('Title'), 'field' => 'n.title'),
'type' => array('data' => t('Type'), 'field' => 'n.type'),
'author' => array('data' => t('Author'), 'field' => 'u.name'),
'author' => t('Author'),
'status' => array('data' => t('Status'), 'field' => 'n.status'),
'changed' => array('data' => t('Updated'), 'field' => 'n.changed', 'sort' => 'desc')
);