Fixed code misspelling.

This commit is contained in:
Leendert Bottelberghs 2004-09-16 09:25:22 +00:00
parent 3b7e401e95
commit 1713df81c6

View file

@ -145,7 +145,7 @@ sub copy {
$b = FileHandle->new(">".$newNode->getPath.$session{os}{slash}.'thumb-'.$_[0]->getFilename);
if (defined $b) {
binmode($b);
cp($a,$b) or WebGUI::ErrorHandler::warn("Couldn't copy thumbnail: ".)$newNode->getPath.$session{os}{slash}.'thumb-'.$_[0]->getFilename." :".$!);
cp($a,$b) or WebGUI::ErrorHandler::warn("Couldn't copy thumbnail: ".$newNode->getPath.$session{os}{slash}.'thumb-'.$_[0]->getFilename." :".$!);
$b->close;
}
$a->close;