fixed var name, $filename should be $foldername

This commit is contained in:
Bjoern Schiessle 2012-06-06 18:08:51 +02:00
parent 6ca2b49292
commit c960e42a17
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ if(trim($foldername) == '') {
OCP\JSON::error(array("data" => array( "message" => "Empty Foldername" )));
exit();
}
if(strpos($filename,'/')!==false){
if(strpos($foldername,'/')!==false){
OCP\JSON::error(array("data" => array( "message" => "Invalid Foldername" )));
exit();
}