Update of /cvsroot/sandweb/sandweb/bin
In directory usw-pr-cvs1:/tmp/cvs-serv18994/bin
Modified Files:
sandweb.cgi
Log Message:
fixed space prob in vcs_output
Index: sandweb.cgi
===================================================================
RCS file: /cvsroot/sandweb/sandweb/bin/sandweb.cgi,v
retrieving revision 1.222
retrieving revision 1.223
diff -U2 -r1.222 -r1.223
--- sandweb.cgi 25 Feb 2002 23:17:58 -0000 1.222
+++ sandweb.cgi 25 Feb 2002 23:27:32 -0000 1.223
@@ -1680,6 +1680,6 @@
FILENAME => @filename,
PROGNAME => $progname,
- VCS_OUTPUT => "@vcs_output",
- VCS_ERROR => "@vcs_error",
+ VCS_OUTPUT => join('', @vcs_output),
+ VCS_ERROR => join('', @vcs_error),
);
@@ -1733,6 +1733,6 @@
FILENAME => "@filename",
PROGNAME => $progname,
- VCS_OUTPUT => "@vcs_output",
- VCS_ERROR => "@vcs_error",
+ VCS_OUTPUT => join('', @vcs_output),
+ VCS_ERROR => join('', @vcs_error),
);
@@ -1835,6 +1835,6 @@
#FILENAME => "@filename",
PROGNAME => $progname,
- VCS_OUTPUT => "@vcs_output",
- VCS_ERROR => "@vcs_error",
+ VCS_OUTPUT => join('', @vcs_output),
+ VCS_ERROR => join('', @vcs_error),
);
print CGI::header( -cookie => $ck_auth );
|