Index: /issm/trunk/src/m/model/loadresultsfromdisk.m
===================================================================
--- /issm/trunk/src/m/model/loadresultsfromdisk.m	(revision 9715)
+++ /issm/trunk/src/m/model/loadresultsfromdisk.m	(revision 9716)
@@ -27,16 +27,16 @@
 	%read log files onto  fields
 	if exist([md.miscellaneous.name '.errlog'],'file'),
-		md.results.(structure(1).SolutionType).errlog=char(textread([md.miscellaneous.name '.errlog'],'%s','delimiter','\n'));
+		md.results.(structure(1).SolutionType)(1).errlog=char(textread([md.miscellaneous.name '.errlog'],'%s','delimiter','\n'));
 	else
-		md.results.(structure(1).SolutionType).errlog='';
+		md.results.(structure(1).SolutionType)(1).errlog='';
 	end
 
 	if exist([md.miscellaneous.name '.outlog'],'file'),
-		md.results.(structure(1).SolutionType).outlog=char(textread([md.miscellaneous.name '.outlog'],'%s','delimiter','\n'));
+		md.results.(structure(1).SolutionType)(1).outlog=char(textread([md.miscellaneous.name '.outlog'],'%s','delimiter','\n'));
 	else
-		md.iresults.(structure(1).SolutionType).outlog='';
+		md.iresults.(structure(1).SolutionType)(1).outlog='';
 	end
 
-	if ~isempty(md.results.(structure(1).SolutionType).errlog),
+	if ~isempty(md.results.(structure(1).SolutionType)(1).errlog),
 		disp(['loadresultsfromcluster info message: error during solution. Check your errlog and outlog model fields']);
 	end
