fixed bug [ 1737565 ] Standalone Jasper Report only with full path possible

http://sourceforge.net/tracker/?func=detail&atid=879332&aid=1737565&group_id=176962
This commit is contained in:
vpj-cd 2007-06-15 00:38:57 +00:00
parent 5a764a02a3
commit c83a90d110
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public class ReportStarter implements ProcessCall {
String reportPath = System.getProperty("org.compiere.report.path"); String reportPath = System.getProperty("org.compiere.report.path");
if (reportPath == null) { if (reportPath == null) {
REPORT_HOME = new File(System.getProperty("ADEMPIERE_HOME") + "./reports"); REPORT_HOME = new File(System.getProperty("ADEMPIERE_HOME") + "/reports");
} else { } else {
REPORT_HOME = new File(reportPath); REPORT_HOME = new File(reportPath);
} }