From 43c8857f8671cb6cfc24d990a84850a511fe6682 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Thu, 14 Jun 2007 22:08:47 +0000 Subject: [PATCH] * we should work without debugging too... --- ctdlphp/config_ctdlclient.php | 4 ++-- ctdlphp/ctdlsession.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ctdlphp/config_ctdlclient.php b/ctdlphp/config_ctdlclient.php index 40676657d..96676a622 100644 --- a/ctdlphp/config_ctdlclient.php +++ b/ctdlphp/config_ctdlclient.php @@ -7,6 +7,6 @@ define('CITADEL_HOSTNAME',"127.0.0.1"); define('CITADEL_TCP_PORTNO','504'); #do you want to see the server conversation for exploring the protocol? -define('CITADEL_DEBUG_CITPROTO',1); -define('CITADEL_DEBUG_PROXY', TRUE); +define('CITADEL_DEBUG_CITPROTO',0); +define('CITADEL_DEBUG_PROXY', FALSE); ?> \ No newline at end of file diff --git a/ctdlphp/ctdlsession.php b/ctdlphp/ctdlsession.php index da8b9c2be..640f4ecfe 100644 --- a/ctdlphp/ctdlsession.php +++ b/ctdlphp/ctdlsession.php @@ -43,10 +43,10 @@ function establish_citadel_session() { // It ain't there, dude. Open up the proxy. (PHP version) if (CITADEL_DEBUG_PROXY){ - $stdout = '>>/tmp/sessionproxyout.txt'; + $stdout = '>>/tmp/sessionproxyout.txt '; } else{ - $stdout = '>/dev/null'; + $stdout = '>/dev/null '; } $cmd = "./sessionproxy.php " . $sockname . -- 2.30.2