diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2011-04-17 11:27:28 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2011-04-17 11:27:28 +0200 |
commit | c5e270b45346ad7046cda64d73c5aae1f9679062 (patch) | |
tree | d73cb53a430fe77195667db77c3ffc50530ad93b /files/ajax | |
parent | 5a03ce696c24e577fd0fbc8235df50c34fb1c05c (diff) | |
download | nextcloud-server-c5e270b45346ad7046cda64d73c5aae1f9679062.tar.gz nextcloud-server-c5e270b45346ad7046cda64d73c5aae1f9679062.zip |
removed deprecated session check, which blocked file upload in some cases
Diffstat (limited to 'files/ajax')
-rw-r--r-- | files/ajax/upload.php | 4 |
1 files changed, 1 insertions, 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(); } |