From f403add23025e44a907a15733b86f32ba65830e1 Mon Sep 17 00:00:00 2001 From: bradymiller Date: Sat, 26 Nov 2011 15:21:32 -0800 Subject: [PATCH] part of the bug fix to show immunizations correctly in the patient report --- interface/patient_file/report/custom_report.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/patient_file/report/custom_report.php b/interface/patient_file/report/custom_report.php index 9423c404e..6e96b8c39 100644 --- a/interface/patient_file/report/custom_report.php +++ b/interface/patient_file/report/custom_report.php @@ -272,7 +272,7 @@ foreach ($ar as $key => $val) { $vaccine_display = generate_display_field(array('data_type'=>'1','list_id'=>'immunizations'), $row['immunization_id']); } } - echo $vaccine_display . " - " . $row['administered_date']; + echo $row['administered_date'] . " - " . $vaccine_display; if ($row['immunization_note']) { echo " - " . $row['immunization_note']; } -- 2.11.4.GIT