diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-15 20:48:10 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-15 20:48:10 +0000 |
commit | 161a9970f77ce6813e710e08076f5d4fc494259a (patch) | |
tree | 3d349326150a59d58bbaf868148fd197e8ca903c /modules/node/node.admin.inc | |
parent | cf987be12d600a513f5efa779602ad4b6682e147 (diff) | |
download | brdo-161a9970f77ce6813e710e08076f5d4fc494259a.tar.gz brdo-161a9970f77ce6813e710e08076f5d4fc494259a.tar.bz2 |
#308534 by Dave Reid: Remove stray whitespace core-wide.
Diffstat (limited to 'modules/node/node.admin.inc')
-rw-r--r-- | modules/node/node.admin.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node/node.admin.inc b/modules/node/node.admin.inc index c69c7894b..9f28f5f6e 100644 --- a/modules/node/node.admin.inc +++ b/modules/node/node.admin.inc @@ -478,10 +478,10 @@ function node_admin_nodes() { // Build the query and load the nodes we want to display. $filter = node_build_filter_query(); - + $sort = tablesort_sql($header, '', 'n.changed DESC'); $result = pager_query(db_rewrite_sql('SELECT n.*, u.name FROM {node} n '. $filter['join'] .' INNER JOIN {users} u ON n.uid = u.uid '. $filter['where'] . $sort), 50, 0, NULL, $filter['args']); - + // Build the 'Update options' form. $form['options'] = array( '#type' => 'fieldset', @@ -608,7 +608,7 @@ function theme_node_admin_nodes($form) { } $output .= theme('table', $header, $rows); - + if ($form['pager']['#markup']) { $output .= drupal_render($form['pager']); } |