core/db_classes/EE_Export.class.php 1 location
                
                
                    
                                                
                                                    
                                |  | @@ 462-466 (lines=5) @@ | 
                                                            
                                    | 459 |  | 				} | 
                                                            
                                    | 460 |  |  | 
                                                            
                                    | 461 |  | 				//make sure each registration has the same questions in the same order | 
                                                            
                                    | 462 |  | 				foreach($questions_for_these_regs_rows as $question_row){ | 
                                                            
                                    | 463 |  | 					if( ! isset($reg_csv_array[$question_row[ 'Question.QST_admin_label']])){ | 
                                                            
                                    | 464 |  | 						$reg_csv_array[$question_row[ 'Question.QST_admin_label' ] ] = null; | 
                                                            
                                    | 465 |  | 					} | 
                                                            
                                    | 466 |  | 				} | 
                                                            
                                    | 467 |  | 				//now fill out the questions THEY answered | 
                                                            
                                    | 468 |  | 				foreach( EEM_Answer::instance()->get_all_wpdb_results( array( array( 'REG_ID' => $reg_row[ 'Registration.REG_ID' ] ), 'force_join' => array( 'Question' ) ) ) as $answer_row){ | 
                                                            
                                    | 469 |  | 					/* @var $answer EE_Answer */ | 
                                                                        
                 
                                                            
                    
core/libraries/batch/JobHandlers/RegistrationsReport.php 1 location
                
                
                    
                                                
                                                    
                                |  | @@ 311-315 (lines=5) @@ | 
                                                            
                                    | 308 |  | 				} | 
                                                            
                                    | 309 |  |  | 
                                                            
                                    | 310 |  | 				//make sure each registration has the same questions in the same order | 
                                                            
                                    | 311 |  | 				foreach($questions_for_these_regs_rows as $question_row){ | 
                                                            
                                    | 312 |  | 					if( ! isset($reg_csv_array[$question_row[ 'Question.QST_admin_label']])){ | 
                                                            
                                    | 313 |  | 						$reg_csv_array[$question_row[ 'Question.QST_admin_label' ] ] = null; | 
                                                            
                                    | 314 |  | 					} | 
                                                            
                                    | 315 |  | 				} | 
                                                            
                                    | 316 |  | 				$answers = \EEM_Answer::instance()->get_all_wpdb_results( | 
                                                            
                                    | 317 |  | 					array( | 
                                                            
                                    | 318 |  | 						array( 'REG_ID' => $reg_row[ 'Registration.REG_ID' ] ), |