From e53ce81f239c5330ce8cc82c039f1e417b003739 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Fri, 8 Nov 2019 23:48:46 +0000 Subject: [PATCH] Fixing style errors. --- htdocs/api/class/api_documents.class.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/htdocs/api/class/api_documents.class.php b/htdocs/api/class/api_documents.class.php index 77fc62680d4..2e831f04da9 100644 --- a/htdocs/api/class/api_documents.class.php +++ b/htdocs/api/class/api_documents.class.php @@ -602,7 +602,7 @@ class Documents extends DolibarrApi return dol_basename($destfile); } - + /** * Delete a document. * @@ -620,38 +620,38 @@ class Documents extends DolibarrApi public function delete($modulepart, $original_file = '') { global $conf, $langs; - + if (empty($modulepart)) { throw new RestException(400, 'bad value for parameter modulepart'); } if (empty($original_file)) { throw new RestException(400, 'bad value for parameter original_file'); } - + //--- Finds and returns the document $entity=$conf->entity; - + $check_access = dol_check_secure_access_document($modulepart, $original_file, $entity, DolibarrApiAccess::$user, '', 'read'); $accessallowed = $check_access['accessallowed']; $sqlprotectagainstexternals = $check_access['sqlprotectagainstexternals']; $original_file = $check_access['original_file']; - + if (preg_match('/\.\./', $original_file) || preg_match('/[<>|]/', $original_file)) { throw new RestException(401); } if (!$accessallowed) { throw new RestException(401); } - + $filename = basename($original_file); $original_file_osencoded=dol_osencode($original_file); // New file name encoded in OS encoding charset - + if (! file_exists($original_file_osencoded)) { dol_syslog("Try to download not found file ".$original_file_osencoded, LOG_WARNING); throw new RestException(404, 'File not found'); } - + if (@unlink($original_file_osencoded)) { return array( 'success' => array( @@ -660,7 +660,7 @@ class Documents extends DolibarrApi ) ); } - + throw new RestException(401); }