From 02db18d7d4835bb2592ee841a74101e475a3b19b Mon Sep 17 00:00:00 2001 From: andres_paglayan Date: Wed, 23 Mar 2005 21:52:45 +0000 Subject: [PATCH] in some php versions touch will give an error, error output supressed by @ --- setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.php b/setup.php index 9bae5d4b8..7a0243242 100644 --- a/setup.php +++ b/setup.php @@ -311,7 +311,7 @@ break; case 4: echo "Step $state

\n"; echo "Writing SQL Configuration to disk...\n"; -touch($conffile); // php bug +@touch($conffile); // php bug $fd = @fopen($conffile, 'w'); if ($fd == FALSE) { echo "ERROR. Could not open config file '$conffile' for writing.\n"; -- 2.11.4.GIT