From c83a90d110e37ffb9de751ef685512594c6f0424 Mon Sep 17 00:00:00 2001 From: vpj-cd Date: Fri, 15 Jun 2007 00:38:57 +0000 Subject: [PATCH] fixed bug [ 1737565 ] Standalone Jasper Report only with full path possible http://sourceforge.net/tracker/?func=detail&atid=879332&aid=1737565&group_id=176962 --- JasperReports/src/org/compiere/report/ReportStarter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JasperReports/src/org/compiere/report/ReportStarter.java b/JasperReports/src/org/compiere/report/ReportStarter.java index fab0443872..d23960d1d0 100644 --- a/JasperReports/src/org/compiere/report/ReportStarter.java +++ b/JasperReports/src/org/compiere/report/ReportStarter.java @@ -72,7 +72,7 @@ public class ReportStarter implements ProcessCall { String reportPath = System.getProperty("org.compiere.report.path"); if (reportPath == null) { - REPORT_HOME = new File(System.getProperty("ADEMPIERE_HOME") + "./reports"); + REPORT_HOME = new File(System.getProperty("ADEMPIERE_HOME") + "/reports"); } else { REPORT_HOME = new File(reportPath); }