Browse Source

Bugzilla 50590: Fix typo in fop_exec() function in fop.js. Thanks to sergeyb49.AT.gmail.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059385 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_1rc1old
Andreas L. Delmelle 13 years ago
parent
commit
db3ce37279
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      fop.js

+ 1
- 1
fop.js View File

@@ -223,7 +223,7 @@ function fop_exec() {
+ (config.Exists("JAVA_OPTS")?config.Item("JAVA_OPTS") + " ":"")
+ (config.Exists("LOGCHOICE")?config.Item("LOGCHOICE") + " ":"")
+ (config.Exists("LOGLEVEL")?config.Item("LOGLEVEL") + " ":"")
"-classpath \"" + local_classpath + "\" "
+ "-classpath \"" + local_classpath + "\" "
+ (config.Exists("FOP_OPTS")?config.Item("FOP_OPTS"):"")
+ "org.apache.fop.cli.Main " + fop_exec_args;
if (debug || fop_exec_debug) {

Loading…
Cancel
Save