diff options
author | Andreas L. Delmelle <adelmelle@apache.org> | 2011-01-15 18:31:37 +0000 |
---|---|---|
committer | Andreas L. Delmelle <adelmelle@apache.org> | 2011-01-15 18:31:37 +0000 |
commit | db3ce3727946ec2a7d7b18093b8bc58783faa89e (patch) | |
tree | 69416da89ed470b6bb5da05fc99a9c40d7504981 /fop.js | |
parent | 503980704c6cf74af834006f166e0335ee19fdf1 (diff) | |
download | xmlgraphics-fop-db3ce3727946ec2a7d7b18093b8bc58783faa89e.tar.gz xmlgraphics-fop-db3ce3727946ec2a7d7b18093b8bc58783faa89e.zip |
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
Diffstat (limited to 'fop.js')
-rw-r--r-- | fop.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) {
|