diff --git a/webform.module b/webform.module
index 966d1f8..8203e36 100644
--- a/webform.module
+++ b/webform.module
@@ -3874,7 +3874,12 @@ function _webform_fetch_draft_sid($nid, $uid) {
     $tracking_mode = webform_variable_get('webform_tracking_mode');
     if ($tracking_mode === 'cookie' || $tracking_mode === 'strict') {
       $cookie_name = 'webform-anony-draft' . $nid; 
-      if (!empty($_COOKIE[$cookie_name])) {    	
+     if (!empty($_COOKIE[$cookie_name])) {
+        //Load the submissions inc file if it hasn't been loaded
+        if (!function_exists('webform_get_sid_by_access_token')) {
+          module_load_include('inc', 'webform', 'includes/webform.submissions');
+        }
+          	
       	return webform_get_sid_by_access_token($nid, $_COOKIE[$cookie_name], $uid, 1);
       }
     }
