From 3b378be5e864cc2b96a89e168e7dbe4541294040 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sun, 20 Mar 2005 21:06:55 +0000 Subject: Missing ) --- etc/inc/util.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/inc/util.inc b/etc/inc/util.inc index e655245..a3fd7ed 100644 --- a/etc/inc/util.inc +++ b/etc/inc/util.inc @@ -288,7 +288,7 @@ function mwexec_bg($command) { /* unlink a file, if it exists */ function unlink_if_exists($fn) { $to_do = glob($fn); - if(is_array($to_do) { + if(is_array($to_do)) { foreach($to_do as $filename) if (file_exists($filename)) unlink($filename); } else { -- cgit v1.1