mirror of
				https://github.com/gtbu/Typesetter-5.3-p8.git
				synced 2025-11-03 22:38:27 +01:00 
			
		
		
		
	Array sizes are inconsistent
ExecInfo() Fatal Error: Array sizes are inconsistent php5.5+
This commit is contained in:
		
							parent
							
								
									3574aaf10a
								
							
						
					
					
						commit
						8de885b111
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -455,8 +455,8 @@ class Addons extends \gp\admin\Addon\Install{
 | 
			
		|||
		foreach($show as $key => $row){
 | 
			
		||||
			$names[$key] = $row['name'];
 | 
			
		||||
		}
 | 
			
		||||
		// PHP 5.5+: $names = array_column($show, 'name');
 | 
			
		||||
		array_multisort($names, SORT_ASC, $show);
 | 
			
		||||
		$names = array_column($show, 'name');
 | 
			
		||||
		// array_multisort($names, SORT_ASC, $show);  ::: // ExecInfo() Fatal Error: Array sizes are inconsistent
 | 
			
		||||
 | 
			
		||||
		foreach($show as $addon_key => $info){
 | 
			
		||||
			$this->PluginPanelGroup($addon_key,$info);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue