diff --git a/includes/import.inc b/includes/import.inc
index c238888..01d0f6e 100644
--- a/includes/import.inc
+++ b/includes/import.inc
@@ -315,13 +315,23 @@ function menu_import_save_menu($menu, $options) {
       $menuitem = $menu[$index];
       $menuitem['plid'] = $menu[$menuitem['parent']]['mlid'];
       $menuitem['menu_name'] = $menu_name;
+      
+      $link_path = isset($menuitem['link_path']) ? $menuitem['link_path'] : false;
+      
+      //Determine if this is the path to view a node (node/x - no more no less)
+      if($link_path && arg(0,$link_path) == 'node' && is_numeric(arg(1, $link_path)) && !arg(2,$link_path)) {
+        $node_path = true;
+      }
+      else {
+        $node_path = false;
+      }
 
       // Do not create nodes for external links.
       if ($menuitem['external']) {
         $external_links_cnt++;
       }
       // Internal link to not-a-node content.
-      elseif ($menuitem['link_path'] && substr($menuitem['link_path'], 0, 4) != 'node') {
+      elseif (!$node_path) {
         $unknown_links_cnt++;
       }
       // Handle links to nodes or missing links.
