I just modified the plugin page wp-dtree.php because of a problem with wpml plugin.
The problem wos that the plugine wont open the tree at a subpage in english.
the modification is:
//if($args['opentoselection'] && isset($_SERVER['REQUEST_URI'])){
if($args['opentoselection'] && isset($_REQUEST['page_id'])){
//$tree .= $opt['openscript'] . wpdt_open_tree_to($_SERVER['REQUEST_URI'],'', $tree) . //$opt['closescript'];
echo $_SERVER['page_id'];
$tree .= $opt['openscript'] . wpdt_open_tree_to($_REQUEST['page_id'],'', $tree) . $opt['closescript'];
}