try disabling persistant connections
[lhc/web/wiklou.git] / install-utils.inc
index 2846fca..62d35c6 100644 (file)
@@ -64,7 +64,7 @@ function readconsole( $prompt = '' ) {
                $fp = fopen( 'php://stdin', 'r' );
                $st = fgets($fp, 1024);
                if ($st === false) return false;
-               $resp = trim( $st ) );
+               $resp = trim( $st );
                fclose( $fp );
                return $resp;
        }