From c5e270b45346ad7046cda64d73c5aae1f9679062 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Sun, 17 Apr 2011 11:27:28 +0200 Subject: [PATCH] removed deprecated session check, which blocked file upload in some cases --- files/ajax/upload.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/files/ajax/upload.php b/files/ajax/upload.php index a1b41d6ba23..959794913b9 100644 --- a/files/ajax/upload.php +++ b/files/ajax/upload.php @@ -19,10 +19,8 @@ $source=$_FILES['file']['tmp_name']; $dir = $_POST['dir']; if(!empty($dir)) $dir .= '/'; $target='/' . stripslashes($dir) . $fileName; -if(isset($_SESSION['username']) -and $_SESSION['username'] and strpos($dir,'..') === false){ +if(strpos($dir,'..') === false){ if(OC_FILESYSTEM::fromUploadedFile($source,$target)){ -// if(OC_FILES::move(dirname($source),basename($source), $dir, $fileName)){ echo json_encode(array( "status" => "success")); exit(); } -- 2.39.5