diff --git a/ehr_billing/src/org/labkey/ehr_billing/notification/BillingNotification.java b/ehr_billing/src/org/labkey/ehr_billing/notification/BillingNotification.java
index fdde62318..feb5edd73 100644
--- a/ehr_billing/src/org/labkey/ehr_billing/notification/BillingNotification.java
+++ b/ehr_billing/src/org/labkey/ehr_billing/notification/BillingNotification.java
@@ -464,8 +464,8 @@ protected void createChargeSummaryReport(final StringBuilder msg, Date lastInvoi
String baseUrl = createURL(containerMap.get(category), centerSpecificBillingSchema, categoryToQuery.get(category), null) + "&query.param.StartDate=" + getDateFormat(c).format(start.getTime()) + "&query.param.EndDate=" + getDateFormat(c).format(endDate.getTime());
String projUrl = baseUrl + ("None".equals(tokens[1]) ? "&query.project~isblank" : "&query.project~eq=" + tokens[1]);
- msg.append("
| " + financialAnalyst + " | "); //the FA
- msg.append("" + tokens[1] + " | ");
+ msg.append("
| " + PageFlowUtil.filter(financialAnalyst) + " | "); //the FA
+ msg.append("" + PageFlowUtil.filter(tokens[1]) + " | ");
String accountUrl = null;
Container financeContainer = EHR_BillingManager.get().getBillingContainer(containerMap.get(category));
@@ -476,22 +476,22 @@ protected void createChargeSummaryReport(final StringBuilder msg, Date lastInvoi
if (accountUrl != null)
{
- msg.append("" + tokens[2] + " | ");
+ msg.append("" + PageFlowUtil.filter(tokens[2]) + " | ");
}
else
{
- msg.append("" + (tokens[2]) + " | ");
+ msg.append("" + PageFlowUtil.filter(tokens[2]) + " | ");
}
- msg.append("" + (tokens[3]) + " | ");
- msg.append("" + category + " | ");
+ msg.append("" + PageFlowUtil.filter(tokens[3]) + " | ");
+ msg.append("" + PageFlowUtil.filter(category) + " | ");
for (FieldDescriptor fd : foundCols)
{
if (totals.containsKey(fd.getFieldName()))
{
String url = projUrl + fd.getFilter();
- msg.append("" + totals.get(fd.getFieldName()) + " | ");
+ msg.append("" + totals.get(fd.getFieldName()) + " | ");
}
else
{