From 1890379f2333a6e247c81649cf2b8e2e416291ab Mon Sep 17 00:00:00 2001 From: Sherwin Gaddis Date: Mon, 24 Oct 2016 23:47:58 -0400 Subject: [PATCH] Preserve the formatting that goes into the soap note for the report output to be more presentable. (#327) --- interface/forms/soap/report.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interface/forms/soap/report.php b/interface/forms/soap/report.php index bf4452941..2dad432fb 100644 --- a/interface/forms/soap/report.php +++ b/interface/forms/soap/report.php @@ -16,7 +16,8 @@ function soap_report( $pid, $encounter, $cols, $id) { $value = "yes"; } $key=ucwords(str_replace("_"," ",$key)); - print "" . xl($key) . ": " . text($value) . ""; + //Updated by Sherwin 10/24/2016 + print "" . xlt($key) . ": " . nl2br(text($value)) . ""; $count++; if ($count == $cols) { $count = 0; -- 2.11.4.GIT