diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-02-11 19:10:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-02-11 19:10:28 +0000 |
commit | 95f4d9751e5d77933e659fedc92ce048fe347afa (patch) | |
tree | fe01e8c6a8af171aeba1b227bd9cf0e493e7f2c3 | |
parent | 9c5646288c141785722a01bf57d4c1503760cd2b (diff) | |
download | brdo-95f4d9751e5d77933e659fedc92ce048fe347afa.tar.gz brdo-95f4d9751e5d77933e659fedc92ce048fe347afa.tar.bz2 |
- Fixed broken colspan.
-rw-r--r-- | modules/node.module | 2 | ||||
-rw-r--r-- | modules/node/node.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/node.module b/modules/node.module index cc5ccc910..ec5f330ae 100644 --- a/modules/node.module +++ b/modules/node.module @@ -922,7 +922,7 @@ function node_admin_nodes() { $output .= '</div>'; // Overview table: - $header = array(NULL, t('Title'), t('Type'), t('Author'), t('Status'), array('data' => t('Operations'), 'colspan' => '2')); + $header = array(NULL, t('Title'), t('Type'), t('Author'), t('Status'), t('Operations')); $destination = drupal_get_destination(); while ($node = db_fetch_object($result)) { diff --git a/modules/node/node.module b/modules/node/node.module index cc5ccc910..ec5f330ae 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -922,7 +922,7 @@ function node_admin_nodes() { $output .= '</div>'; // Overview table: - $header = array(NULL, t('Title'), t('Type'), t('Author'), t('Status'), array('data' => t('Operations'), 'colspan' => '2')); + $header = array(NULL, t('Title'), t('Type'), t('Author'), t('Status'), t('Operations')); $destination = drupal_get_destination(); while ($node = db_fetch_object($result)) { |