From 89bf32bb59594b105bf64216bb5e0baa4164fa57 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 6 Dec 2001 00:28:54 +0000 Subject: [PATCH] remove if from symlink (seems to be leftover), if destination does not exist if causes symlink not to be created --- infolog/inc/class.vfs.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infolog/inc/class.vfs.inc.php b/infolog/inc/class.vfs.inc.php index d70a69b349..1725eeb586 100644 --- a/infolog/inc/class.vfs.inc.php +++ b/infolog/inc/class.vfs.inc.php @@ -1435,7 +1435,7 @@ */ function symlink($from,$to,$relatives = '') { - if ($this->file_exists ($to, array ($relatives[1]))) + // echo "

vfs->symlink('$from','$to')

\n"; return $this->cp ($from, $to, $relatives, True); }