[Filesystem] Fixed mirror for symlinks

This commit is contained in:
COil 2013-12-27 14:13:43 +01:00
parent c86e8c11e2
commit d136555fc7

View File

@ -393,7 +393,7 @@ class Filesystem
}
} else {
if (is_link($file)) {
$this->symlink($file, $target);
$this->symlink($file->getLinkTarget(), $target);
} elseif (is_dir($file)) {
$this->mkdir($target);
} elseif (is_file($file)) {