- Remove extraneous parentheses around empty() calls - Remove duplicate calls to intval(), count() or strlen() after empty() - Replace ternary operators outputting binary value with empty() return value - Rewrite defaults() without x()
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			268 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			268 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * @file view/theme/frio/php/modes/none.php
 | |
|  * @brief The site template for pure content (e.g. (modals)
 | |
|  * 
 | |
|  * This themplate is used e.g for bs modals. So outputs
 | |
|  * only the pure content
 | |
|  */
 | |
| 
 | |
| if(!empty($page['content'])) echo $page['content'];
 | |
| 
 |