Skip to content

Commit

Permalink
added bolding to some field titles
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsetsystems committed May 21, 2007
1 parent 74d4c26 commit cb0d172
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions interface/patient_file/summary/demographics.php
Original file line number Diff line number Diff line change
Expand Up @@ -193,19 +193,19 @@ function imdeleted() {
echo " " . $result{"phone_contact"};
}
if ($result{"phone_home"} != "") {
echo "<br>Home: ";
echo "<br><span class='bold'>Home:</span> ";
echo $result{"phone_home"};
}
if ($result{"phone_biz"} != "") {
echo "<br>Work: ";
echo "<br><span class='bold'>Work:</span> ";
echo $result{"phone_biz"};
}
if ($result{"phone_cell"} != "") {
echo "<br>Mobile: ";
echo "<br><span class='bold'>Mobile:</span> ";
echo $result{"phone_cell"};
}
if ($result{"email"} != "") {
echo "<br>".xl('Email').": </span>";
echo "<br><span class='bold'>".xl('Email').": </span>";
echo '<a class=link_submit href="mailto:' . $result{"email"} . '">' . $result{"email"} . '</a>';
}
?>
Expand Down

0 comments on commit cb0d172

Please sign in to comment.