Fix count() warning in include/dba.php
This commit is contained in:
		
					parent
					
						
							
								0ff51c2b13
							
						
					
				
			
			
				commit
				
					
						a84477ed2d
					
				
			
		
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -971,7 +971,7 @@ class dba {
 | 
			
		|||
					// Split the SQL queries in chunks of 100 values
 | 
			
		||||
					// We do the $i stuff here to make the code better readable
 | 
			
		||||
					$i = $counter[$key_table][$key_condition];
 | 
			
		||||
					if (count($compacted[$key_table][$key_condition][$i]) > 100) {
 | 
			
		||||
					if (isset($compacted[$key_table][$key_condition][$i]) && count($compacted[$key_table][$key_condition][$i]) > 100) {
 | 
			
		||||
						++$i;
 | 
			
		||||
					}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue