Index: views_taxonomy.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/modules/views_taxonomy.inc,v
retrieving revision 1.20.2.6
diff -u -p -r1.20.2.6 views_taxonomy.inc
--- views_taxonomy.inc	15 Nov 2006 16:52:16 -0000	1.20.2.6
+++ views_taxonomy.inc	4 Dec 2006 18:03:10 -0000
@@ -29,6 +29,12 @@ function taxonomy_views_tables() {
       'value-type' => 'array',
     ));
 
+    // The nodeorder module adds a column (weight_in_tid) to the core term_node table.
+    // Expose it here as sortable.
+    if (module_exist('nodeorder')) {
+      views_table_add_sort($table, 'weight_in_tid', 'Nodeorder: Weight In Category', 'This allows you to sort by a node\'s order within it\'s category.  You should filter the search to only include a single category.');
+    }
+    
     $tables[$table['name']] = $table;
 
     $vocabularies = taxonomy_get_vocabularies();
