Package: websvn
Version: 2.2.1-1
setEnscriptPath needs a slight change as it removes the "-q" option
set by default.
The Debian install uses this by default and so you get this problem
out of the box.
You then end up with "output left in -" printed to apache error log as
a result.
Patch attached.
Adrian
--
Email: [email protected] -*- GPG key available on public key servers
Debian GNU/Linux - the maintainable distribution -*- www.debian.org
# diff -u include/configclass.php.orig include/configclass.php
--- include/configclass.php.orig 2009-06-22 15:51:36.000000000
+0100
+++ include/configclass.php 2009-06-22 15:51:13.000000000 +0100
@@ -1096,7 +1096,7 @@
// Define the location of the enscript command
function setEnscriptPath($path) {
- $this->setPath($this->enscript, $path, "enscript");
+ $this->setPath($this->enscript, $path, "enscript", "-q");
}
function getEnscriptCommand() {