From 509532d75130fdc4801266d72ed6740e600e2b8e Mon Sep 17 00:00:00 2001 From: mohrt Date: Mon, 23 Apr 2001 22:36:25 +0000 Subject: [PATCH] uncomment copy/unlink --- misc/fix_vars.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/fix_vars.php b/misc/fix_vars.php index ce138799..a8a2e0fa 100644 --- a/misc/fix_vars.php +++ b/misc/fix_vars.php @@ -56,8 +56,8 @@ foreach (array_slice($argv, 1) as $template) { fwrite($fp, $output); fclose($fp); - //copy($template.'.out', $template); - //unlink($template.'.out'); + copy($template.'.out', $template); + unlink($template.'.out'); print "Fixed $template.\n"; }