Index: C:/xampp/htdocs/productive/sites/all/modules/nodehierarchy/nodehierarchy_views/nodehierarchy_views.module
===================================================================
--- C:/xampp/htdocs/productive/sites/all/modules/nodehierarchy/nodehierarchy_views/nodehierarchy_views.module	(revision 7755)
+++ C:/xampp/htdocs/productive/sites/all/modules/nodehierarchy/nodehierarchy_views/nodehierarchy_views.module	(working copy)
@@ -119,6 +119,11 @@
     $arguments = explode('/', $_GET['q']);
     // First arg will be 'node', remove it.
     array_shift( $arguments );
+    // Second arg will be nid of page being viewed. As theme may be doing
+    // something fancy (e.g. currently showing the grandparent page with
+    // children & grandchildren embedded) this may not be the same as current nid
+    array_shift( $arguments );
+    array_unshift( $arguments, $node->nid );		
     // The next argument is the nid, this we will pass as the parent,
     // The rest may be added by the view (feed selectors, calendar params etc).
 
