Skip to content

Commit

Permalink
fixed: upload error if exisitng file found (wrong class name used for…
Browse files Browse the repository at this point in the history
… uploader)
  • Loading branch information
pollen8 committed Sep 14, 2012
1 parent b372f26 commit 126084d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/com_fabrik/helpers/uploader.php
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ function incrementFileName($origFileName, $newFileName, $version)
$f = JString::rtrim($f, $version - 1);
$newFileName = $f . $version . "." . $ext;
$version++;
$newFileName = uploader::incrementFileName($origFileName, $newFileName, $version);
$newFileName = FabrikUploader::incrementFileName($origFileName, $newFileName, $version);
}
return $newFileName;
}
Expand Down

0 comments on commit 126084d

Please sign in to comment.