|  |  | @@ -718,6 +718,11 @@ bool ConfigurationElement::interpret(ConfigurationData& Data) { | 
		
	
		
			
			|  |  |  | return false;                                                       // No-Match means we are not it. | 
		
	
		
			
			|  |  |  | } | 
		
	
		
			
			|  |  |  | }                                                                           // If the name checks out then | 
		
	
		
			
			|  |  |  | if (!isspace(Data.Data(Index + myName.length())) &&                         // Next character must be whitespace | 
		
	
		
			
			|  |  |  | (Data.Data(Index + myName.length()) != '/') &&                          // or closing of the tag. | 
		
	
		
			
			|  |  |  | (Data.Data(Index + myName.length()) != '>') ) { | 
		
	
		
			
			|  |  |  | return false; | 
		
	
		
			
			|  |  |  | } | 
		
	
		
			
			|  |  |  | Index += myName.length();                                                   // move the Index past our name. | 
		
	
		
			
			|  |  |  | 
 | 
		
	
		
			
			|  |  |  | // At this point we have found ourselves so we will activate and interpret |