From 1ef48604d2474dfbfe23645f5fa5bb0b5ea0fadc Mon Sep 17 00:00:00 2001 From: ftimme <ft@falkotimme.com> Date: Fri, 19 Oct 2012 10:19:43 -0400 Subject: [PATCH] - Removed doubled lines from web_domain_edit.htm template. --- server/lib/classes/system.inc.php | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/server/lib/classes/system.inc.php b/server/lib/classes/system.inc.php index 01b70fe..b460875 100644 --- a/server/lib/classes/system.inc.php +++ b/server/lib/classes/system.inc.php @@ -709,6 +709,19 @@ return copy($file1,$file2); } + function touch($file, $allow_symlink = false){ + global $app; + if($allow_symlink == false && @file_exists($file) && $this->checkpath($file) == false) { + $this->unlink($file); + } + if(@touch($file)) { + return true; + } else { + $app->log("touch failed: $file",LOGLEVEL_DEBUG); + return false; + } + } + function checkpath($path) { $path = trim($path); //* We allow only absolute paths -- Gitblit v1.9.1