diff --git a/src/com/serotonin/mango/web/dwr/ReportsDwr.java b/src/com/serotonin/mango/web/dwr/ReportsDwr.java index 73905f609..0381ad972 100644 --- a/src/com/serotonin/mango/web/dwr/ReportsDwr.java +++ b/src/com/serotonin/mango/web/dwr/ReportsDwr.java @@ -247,7 +247,7 @@ public ReportVO createReportFromWatchlist(int watchListId) { watchListService.populateWatchlistData(watchList); ReportVO report = new ReportVO(); - report.setName(LocalizableMessage.getMessage(getResourceBundle(), "common.copyPrefix", watchList.getName())); + report.setName(watchList.getName()); for (DataPointVO dp : watchList.getPointList()) { ReportPointVO rp = new ReportPointVO(); rp.setPointId(dp.getId());