|  |  | @ -152,11 +152,8 @@ class Html | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 	public static function tag($name, $content = '', $options = array()) |  |  |  | 	public static function tag($name, $content = '', $options = array()) | 
			
		
	
		
		
			
				
					
					|  |  |  | 	{ |  |  |  | 	{ | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if (isset(static::$voidElements[strtolower($name)])) { |  |  |  | 		$html = "<$name" . static::renderTagAttributes($options) . '>'; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			return static::beginTag($name, $options); |  |  |  | 		return isset(static::$voidElements[strtolower($name)]) ? $html : "$html$content</$name>"; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		} else { |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			return static::beginTag($name, $options) . $content . static::endTag($name); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  | 	/** | 
			
		
	
	
		
		
			
				
					|  |  | 
 |