diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-08 05:57:12 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-08 05:57:12 +0000 |
commit | 09e6a714a399439190724b8890fc597fb9e775e2 (patch) | |
tree | f8b7b6ecf9999662b8708733f1dcdc2f2440ee8f | |
parent | 3ff482d390fbfc79d536dccc29c93e473978ea4e (diff) | |
download | brdo-09e6a714a399439190724b8890fc597fb9e775e2.tar.gz brdo-09e6a714a399439190724b8890fc597fb9e775e2.tar.bz2 |
#373897 follow-up by jbrown: Remove bogus sortable author column on content page, resulting in SQL errors.
-rw-r--r-- | modules/node/node.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.admin.inc b/modules/node/node.admin.inc index f18920486..9669b8972 100644 --- a/modules/node/node.admin.inc +++ b/modules/node/node.admin.inc @@ -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') ); |