Index: views/views_handler_field_comment_depth.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/nodecomment/views/Attic/views_handler_field_comment_depth.inc,v
retrieving revision 1.1.2.1.2.1
diff -u -r1.1.2.1.2.1 views_handler_field_comment_depth.inc
--- views/views_handler_field_comment_depth.inc	27 May 2009 00:04:16 -0000	1.1.2.1.2.1
+++ views/views_handler_field_comment_depth.inc	7 Jan 2010 22:20:24 -0000
@@ -4,10 +4,14 @@
  * Field handler to display the depth of a comment
  */
 class views_handler_field_comment_depth extends views_handler_field {
+  function construct() {
+    parent::construct();
+    $this->additional_fields['thread'] = 'thread';
+  }
   /**
    * Work out the depth of this comment
    */
   function render($values) {
-    return count(explode('.', $values->{$this->aliases['comments_thread']})) - 1;
+    return count(explode('.', $values->{$this->aliases['thread']})) - 1;
   }
 }
