fix var name

This commit is contained in:
Björn Schießle 2013-03-14 17:09:48 +01:00
parent 93b2ada6f6
commit f78594c0ae
1 changed files with 2 additions and 2 deletions

View File

@ -164,8 +164,8 @@ class Storage {
// if the file already exists than it was a upload of a existing file
// over the web interface -> store() is the right function we need here
if ($files_view->file_exists($new_path)) {
return self::store($newpath);
if ($files_view->file_exists($newpath)) {
return self::store($new_path);
}
$abs_newpath = $versions_view->getLocalFile($newpath);