From 05796fdfe870e413f26973d6ed55d2e79fdfa556 Mon Sep 17 00:00:00 2001 From: bradymiller Date: Tue, 3 Aug 2010 09:20:53 +0000 Subject: [PATCH] syntax bug fix --- interface/patient_file/summary/pnotes_fragment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/patient_file/summary/pnotes_fragment.php b/interface/patient_file/summary/pnotes_fragment.php index 6e79f0b18..dd49e9c79 100644 --- a/interface/patient_file/summary/pnotes_fragment.php +++ b/interface/patient_file/summary/pnotes_fragment.php @@ -97,7 +97,7 @@ $fake_register_globals=false; $body = $iter['body']; if (preg_match('/^\d\d\d\d-\d\d-\d\d \d\d\:\d\d /', $body)) { - $body = nl2br(htmlspecialchars(oeFormatPatientNote($body),ENT_NOQUOTES); + $body = nl2br(htmlspecialchars(oeFormatPatientNote($body),ENT_NOQUOTES)); } else { $body = htmlspecialchars(oeFormatSDFT(strtotime($iter['date'])) . date(' H:i', strtotime($iter['date'])) . ' (' . $iter['user'] . ') ',ENT_NOQUOTES) . -- 2.11.4.GIT