=== modified file 'wikitools.module' --- wikitools.module 2008-02-25 09:22:43 +0000 +++ wikitools.module 2008-03-30 15:46:37 +0000 @@ -431,11 +431,16 @@ // Single match for title. $node = current($found_nodes); if ($subpage) { - drupal_goto("node/$node->nid/$subpage"); + $url = "node/$node->nid/$subpage"; } else { - drupal_goto("node/$node->nid"); + $url = "node/$node->nid"; } + // Without this, the tabs won't be displayed. + // TODO: There has to be a better way! + $_GET['q'] = $url; + // Generate the node. + $output = menu_execute_active_handler($url); } else if (count($found_nodes) > 1) { // Multiple match for title.